1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/X86/xor-undef.ll
2009-09-08 23:54:48 +00:00

12 lines
209 B
LLVM

; RUN: llc < %s -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
}