mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
14 lines
239 B
LLVM
14 lines
239 B
LLVM
|
; RUN: llvm-as < %s | llc -march=ppc32 | grep eqv | 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, %Y
|
||
|
%B = xor int %A, -1
|
||
|
ret int %B
|
||
|
}
|