mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
8 lines
181 B
LLVM
8 lines
181 B
LLVM
|
; 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
|
||
|
}
|
||
|
|