Files
clang-p2996/llvm/test/Regression/CodeGen/PowerPC/eqv.ll
Chris Lattner 95e43ae162 Check for eqv matching
llvm-svn: 21414
2005-04-21 21:10:07 +00:00

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
}