mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
df2896d609
llvm-svn: 81290
9 lines
253 B
LLVM
9 lines
253 B
LLVM
; RUN: llc < %s -march=x86 -disable-mmx
|
|
|
|
define void @test2(<2 x i32> %A, <2 x i32> %B, <2 x i32>* %C) nounwind {
|
|
%D = icmp sgt <2 x i32> %A, %B
|
|
%E = zext <2 x i1> %D to <2 x i32>
|
|
store <2 x i32> %E, <2 x i32>* %C
|
|
ret void
|
|
}
|