1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/CodeGen/PowerPC/eqv.ll

14 lines
239 B
LLVM
Raw Normal View History

2005-04-21 23:10:07 +02:00
; 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
}