diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-21 21:10:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-21 21:10:07 +0000 |
commit | 9dd7a87a88792c1a744160ceedf99bd2c7473591 (patch) | |
tree | 6d5e6c1ffe12585aecd1d19a06ad99b5aae78584 | |
parent | 837a521c48b5bb481b61ba971092044cdbf0387f (diff) | |
download | external_llvm-9dd7a87a88792c1a744160ceedf99bd2c7473591.zip external_llvm-9dd7a87a88792c1a744160ceedf99bd2c7473591.tar.gz external_llvm-9dd7a87a88792c1a744160ceedf99bd2c7473591.tar.bz2 |
Check for eqv matching
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21414 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/PowerPC/eqv.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/eqv.ll b/test/CodeGen/PowerPC/eqv.ll new file mode 100644 index 0000000..716b2f7 --- /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 +} |