mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 18:31:23 +00:00
a47d9669b7
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74980 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
225 B
LLVM
10 lines
225 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep pcmpgtd
|
|
|
|
|
|
define <4 x i32> @test2(<4 x i32> %A, <4 x i32> %B) nounwind {
|
|
%C = icmp sgt <4 x i32> %A, %B
|
|
%D = sext <4 x i1> %C to <4 x i32>
|
|
ret <4 x i32> %D
|
|
}
|
|
|