A few final (for now) tests
authorNate Begeman <natebegeman@mac.com>
Fri, 17 Feb 2006 21:38:45 +0000 (21:38 +0000)
committerNate Begeman <natebegeman@mac.com>
Fri, 17 Feb 2006 21:38:45 +0000 (21:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26267 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/PowerPC/and_sra.ll
test/CodeGen/PowerPC/shl_sext.ll

index 1f5abf3722f2ca690c2acce2da7a08963af9e764..6b315e1ed3709e6debe5434d89b2349fbe0a3a78 100644 (file)
@@ -16,3 +16,11 @@ int %test2(uint %mode.0.i.0) {
         %tmp.83 = and int %tmp.80, %tmp.82             ; <int> [#uses=1]
         ret int %tmp.83
 }
+
+uint %test3(int %specbits.6.1) {
+        %tmp.2540 = shr int %specbits.6.1, ubyte 11             ; <int> [#uses=1]
+        %tmp.2541 = cast int %tmp.2540 to uint          ; <uint> [#uses=1]
+        %tmp.2542 = shl uint %tmp.2541, ubyte 13                ; <uint> [#uses=1]
+        %tmp.2543 = and uint %tmp.2542, 8192            ; <uint> [#uses=1]
+        ret uint %tmp.2543
+}
index 95ec2d29f62a28e78a85da4786751f08dad938e2..60fcda58f939f2120c8bc9b773bc814d38959a25 100644 (file)
@@ -7,3 +7,11 @@ int %test(uint %mode.0.i.0) {
         %tmp.81 = shl int %tmp.80, ubyte 24             ; <int> [#uses=1]
         ret int %tmp.81
 }
+
+int %test2(uint %mode.0.i.0) {
+        %tmp.79 = cast uint %mode.0.i.0 to sbyte        ; <sbyte> [#uses=1]
+        %tmp.80 = cast sbyte %tmp.79 to int             ; <int> [#uses=1]
+        %tmp.81 = shl int %tmp.80, ubyte 16             ; <int> [#uses=1]
+        %tmp.82 = and int %tmp.81, 16711680
+        ret int %tmp.82
+}