summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/shl_sext.ll
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2006-02-17 21:38:45 +0000
committerNate Begeman <natebegeman@mac.com>2006-02-17 21:38:45 +0000
commitb1d3c15c3ca54acf4b97f74894d5c2023e861c4f (patch)
tree6de31466af708d2f920c0b2d2858ffbfc9e1456a /test/CodeGen/PowerPC/shl_sext.ll
parent3bd540392056be2000c921296711bb80ab1bd4aa (diff)
downloadllvm-b1d3c15c3ca54acf4b97f74894d5c2023e861c4f.tar.gz
llvm-b1d3c15c3ca54acf4b97f74894d5c2023e861c4f.tar.bz2
llvm-b1d3c15c3ca54acf4b97f74894d5c2023e861c4f.tar.xz
A few final (for now) tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26267 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/shl_sext.ll')
-rw-r--r--test/CodeGen/PowerPC/shl_sext.ll8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/shl_sext.ll b/test/CodeGen/PowerPC/shl_sext.ll
index 95ec2d29f6..60fcda58f9 100644
--- a/test/CodeGen/PowerPC/shl_sext.ll
+++ b/test/CodeGen/PowerPC/shl_sext.ll
@@ -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
+}