llvm-6502/test/CodeGen/X86/vec_compare.ll

8 lines
181 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep pcmpgtd
define <4 x i32> @test(<4 x i32> %A, <4 x i32> %B) nounwind {
%C = vicmp sgt <4 x i32> %A, %B
ret <4 x i32> %C
}