aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Alpha/bic.ll
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2005-04-08 16:46:44 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2005-04-08 16:46:44 +0000
commitb8a5d63b187b411e8bc9703233ee42d6ccd05f6c (patch)
tree977cb1981381b4f0c0e7506e1198e9d03d14f6d6 /test/CodeGen/Alpha/bic.ll
parent6dcceb5ecbff459c3e6e30f459f49d2b90696da4 (diff)
downloadexternal_llvm-b8a5d63b187b411e8bc9703233ee42d6ccd05f6c.zip
external_llvm-b8a5d63b187b411e8bc9703233ee42d6ccd05f6c.tar.gz
external_llvm-b8a5d63b187b411e8bc9703233ee42d6ccd05f6c.tar.bz2
added some tests to check stupid pattern matching mistakes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Alpha/bic.ll')
-rw-r--r--test/CodeGen/Alpha/bic.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/Alpha/bic.ll b/test/CodeGen/Alpha/bic.ll
new file mode 100644
index 0000000..581fc61
--- /dev/null
+++ b/test/CodeGen/Alpha/bic.ll
@@ -0,0 +1,11 @@
+; Make sure this testcase codegens to the bic instruction
+; RUN: llvm-as < %s | llc -march=alpha | grep 'bic'
+
+implementation ; Functions:
+
+long %bar(long %x, long %y) {
+entry:
+ %tmp.1 = xor long %x, -1 ; <long> [#uses=1]
+ %tmp.2 = and long %y, long %tmp.1
+ ret long %tmp.2
+}