blob: 3a06a415c21137bc10fc2efc72fc20ba92f4b725 [file] [log] [blame]
; 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
}