summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/small-arguments.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-08-31 18:19:50 +0000
committerChris Lattner <sabre@nondot.org>2005-08-31 18:19:50 +0000
commitc730706a89a3983a3d2eb95fd61e6ae738ff7fb1 (patch)
tree457416d7ea724fbc5e0fc2d2e7e3864bb7da9c47 /test/CodeGen/PowerPC/small-arguments.ll
parent99296ffd36662f0a64a2b4922e2b133b46222113 (diff)
downloadllvm-c730706a89a3983a3d2eb95fd61e6ae738ff7fb1.tar.gz
llvm-c730706a89a3983a3d2eb95fd61e6ae738ff7fb1.tar.bz2
llvm-c730706a89a3983a3d2eb95fd61e6ae738ff7fb1.tar.xz
Add a testcase for nate's patch
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/small-arguments.ll')
-rw-r--r--test/CodeGen/PowerPC/small-arguments.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/small-arguments.ll b/test/CodeGen/PowerPC/small-arguments.ll
new file mode 100644
index 0000000000..9195d0f267
--- /dev/null
+++ b/test/CodeGen/PowerPC/small-arguments.ll
@@ -0,0 +1,12 @@
+; RUN: llvm-as < %s | llc -march=ppc32 | not grep 'extsh\|rlwinm r3, r3'
+
+int %test1(short %X) {
+ %Y = cast short %X to int ;; dead
+ ret int %Y
+}
+
+int %test2(ushort %X) {
+ %Y = cast ushort %X to int
+ %Z = and int %Y, 65535 ;; dead
+ ret int %Z
+}