llvm-for-llvmta/test/CodeGen/Hexagon/vsplat-isel.ll

11 lines
239 B
LLVM
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
; 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
}