[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/and_sra.ll shl_sext.ll
Nate Begeman
natebegeman at mac.com
Fri Feb 17 13:38:57 PST 2006
Changes in directory llvm/test/Regression/CodeGen/PowerPC:
and_sra.ll updated: 1.1 -> 1.2
shl_sext.ll updated: 1.1 -> 1.2
---
Log message:
A few final (for now) tests
---
Diffs of the changes: (+16 -0)
and_sra.ll | 8 ++++++++
shl_sext.ll | 8 ++++++++
2 files changed, 16 insertions(+)
Index: llvm/test/Regression/CodeGen/PowerPC/and_sra.ll
diff -u llvm/test/Regression/CodeGen/PowerPC/and_sra.ll:1.1 llvm/test/Regression/CodeGen/PowerPC/and_sra.ll:1.2
--- llvm/test/Regression/CodeGen/PowerPC/and_sra.ll:1.1 Fri Feb 17 15:22:08 2006
+++ llvm/test/Regression/CodeGen/PowerPC/and_sra.ll Fri Feb 17 15:38:45 2006
@@ -16,3 +16,11 @@
%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: llvm/test/Regression/CodeGen/PowerPC/shl_sext.ll
diff -u llvm/test/Regression/CodeGen/PowerPC/shl_sext.ll:1.1 llvm/test/Regression/CodeGen/PowerPC/shl_sext.ll:1.2
--- llvm/test/Regression/CodeGen/PowerPC/shl_sext.ll:1.1 Fri Feb 17 15:32:46 2006
+++ llvm/test/Regression/CodeGen/PowerPC/shl_sext.ll Fri Feb 17 15:38:45 2006
@@ -7,3 +7,11 @@
%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
+}
More information about the llvm-commits
mailing list