mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
15 lines
282 B
LLVM
15 lines
282 B
LLVM
|
; RUN: llvm-as < %s | llc -march=sparc &&
|
||
|
; RUN: llvm-as < %s | llc -march=sparc | grep xnor | wc -l | grep 2
|
||
|
|
||
|
int %test1(int %X, int %Y) {
|
||
|
%A = xor int %X, %Y
|
||
|
%B = xor int %A, -1
|
||
|
ret int %B
|
||
|
}
|
||
|
|
||
|
int %test2(int %X, int %Y) {
|
||
|
%A = xor int %X, -1
|
||
|
%B = xor int %A, %Y
|
||
|
ret int %B
|
||
|
}
|