mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
8cb64d8e8b
llvm-svn: 48792
12 lines
219 B
LLVM
12 lines
219 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep xor | count 2
|
|
|
|
define <4 x i32> @t1() {
|
|
%tmp = xor <4 x i32> undef, undef
|
|
ret <4 x i32> %tmp
|
|
}
|
|
|
|
define i32 @t2() {
|
|
%tmp = xor i32 undef, undef
|
|
ret i32 %tmp
|
|
}
|