summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/rlwimi.ll
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-08-03 18:11:23 +0000
committerNate Begeman <natebegeman@mac.com>2005-08-03 18:11:23 +0000
commit2bbcca30b74e7e3cdd41932438e891745866a0eb (patch)
tree13b88d9899db5871a8c45f233ea41922ef51108b /test/CodeGen/PowerPC/rlwimi.ll
parent82e6ef3ec3fce02f14d879195789cbef5b24c9be (diff)
downloadllvm-2bbcca30b74e7e3cdd41932438e891745866a0eb.tar.gz
llvm-2bbcca30b74e7e3cdd41932438e891745866a0eb.tar.bz2
llvm-2bbcca30b74e7e3cdd41932438e891745866a0eb.tar.xz
Update rlwimi tests to catch all the cases we care about
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/rlwimi.ll')
-rw-r--r--test/CodeGen/PowerPC/rlwimi.ll14
1 files changed, 12 insertions, 2 deletions
diff --git a/test/CodeGen/PowerPC/rlwimi.ll b/test/CodeGen/PowerPC/rlwimi.ll
index 8c87cd64b2..f5c740bb9d 100644
--- a/test/CodeGen/PowerPC/rlwimi.ll
+++ b/test/CodeGen/PowerPC/rlwimi.ll
@@ -1,5 +1,6 @@
; All of these ands and shifts should be folded into rlwimi's
-; RUN: llvm-as < rlwimi.ll | llc -march=ppc32 | not grep and
+; RUN: llvm-as < rlwimi.ll | llc -march=ppc32 | not grep and &&
+; RUN: llvm-as < rlwimi.ll | llc -march=ppc32 | grep rlwimi | wc -l | grep 8
implementation ; Functions:
@@ -53,10 +54,19 @@ entry:
ret int %tmp.9
}
-int %test9(int %x, int %y) {
+int %test7(int %x, int %y) {
entry:
%tmp.2 = and int %x, -65536 ; <int> [#uses=1]
%tmp.5 = and int %y, 65535 ; <int> [#uses=1]
%tmp.7 = or int %tmp.5, %tmp.2 ; <int> [#uses=1]
ret int %tmp.7
}
+
+uint %test8(uint %bar) {
+entry:
+ %tmp.3 = shl uint %bar, ubyte 1 ; <uint> [#uses=1]
+ %tmp.4 = and uint %tmp.3, 2 ; <uint> [#uses=1]
+ %tmp.6 = and uint %bar, 4294967293 ; <uint> [#uses=1]
+ %tmp.7 = or uint %tmp.4, %tmp.6 ; <uint> [#uses=1]
+ ret uint %tmp.7
+}