summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/extsh.ll
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2006-02-17 21:22:08 +0000
committerNate Begeman <natebegeman@mac.com>2006-02-17 21:22:08 +0000
commitd44d3d5fc33fe26083ccf202232989299f0b2bdd (patch)
tree86ad08622decf138667e0ee9bb8f506f80662fd0 /test/CodeGen/PowerPC/extsh.ll
parent7b81c758abc76c969fbaa4c321a82a28dd5fd8dc (diff)
downloadllvm-d44d3d5fc33fe26083ccf202232989299f0b2bdd.tar.gz
llvm-d44d3d5fc33fe26083ccf202232989299f0b2bdd.tar.bz2
llvm-d44d3d5fc33fe26083ccf202232989299f0b2bdd.tar.xz
New tests!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/extsh.ll')
-rw-r--r--test/CodeGen/PowerPC/extsh.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/extsh.ll b/test/CodeGen/PowerPC/extsh.ll
new file mode 100644
index 0000000000..4ac7735e68
--- /dev/null
+++ b/test/CodeGen/PowerPC/extsh.ll
@@ -0,0 +1,7 @@
+; This should turn into a single extsh
+; RUN: llvm-as < %s | llc -march=ppc32 | grep extsh | wc -l | grep 1
+int %test(int %X) {
+ %tmp.81 = shl int %X, ubyte 16 ; <int> [#uses=1]
+ %tmp.82 = shr int %tmp.81, ubyte 16 ; <int> [#uses=1]
+ ret int %tmp.82
+}