mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
26471c48b3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48792 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|