mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
f351ddf6e0
llvm-svn: 269312
11 lines
239 B
LLVM
11 lines
239 B
LLVM
; RUN: llc -march=hexagon -O0 < %s | FileCheck %s
|
|
; CHECK: vsplatb
|
|
|
|
declare i32 @llvm.hexagon.S2.vsplatrb(i32) #0
|
|
|
|
define i32 @foo(i8 %x) {
|
|
%p0 = zext i8 %x to i32
|
|
%p1 = tail call i32 @llvm.hexagon.S2.vsplatrb(i32 %p0)
|
|
ret i32 %p1
|
|
}
|