blob: 0e60d4ef087ef2b005773f3c283d6ca6ff23bf6f [file] [log] [blame]
Evan Cheng5d00cb42008-03-25 20:08:07 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep xor | count 2
2
3define <4 x i32> @t1() {
4 %tmp = xor <4 x i32> undef, undef
5 ret <4 x i32> %tmp
6}
7
8define i32 @t2() {
9 %tmp = xor i32 undef, undef
10 ret i32 %tmp
11}