diff --git a/test/CodeGen/PowerPC/eqv.ll b/test/CodeGen/PowerPC/eqv.ll new file mode 100644 index 00000000000..716b2f76e28 --- /dev/null +++ b/test/CodeGen/PowerPC/eqv.ll @@ -0,0 +1,13 @@ +; 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 +}