test for the formation of shladd
authorDuraid Madina <duraid@octopus.com.au>
Sat, 29 Oct 2005 04:06:49 +0000 (04:06 +0000)
committerDuraid Madina <duraid@octopus.com.au>
Sat, 29 Oct 2005 04:06:49 +0000 (04:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24077 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/IA64/2005-10-29-shladd.ll [new file with mode: 0644]

diff --git a/test/CodeGen/IA64/2005-10-29-shladd.ll b/test/CodeGen/IA64/2005-10-29-shladd.ll
new file mode 100644 (file)
index 0000000..0f241ab
--- /dev/null
@@ -0,0 +1,11 @@
+; this should turn into shladd 
+; RUN: llvm-as < %s | llc -march=ia64 | grep 'shladd'
+
+implementation   ; Functions:
+
+long %bogglesmoggle(long %X, long %Y) {
+       %A = shl long %X, ubyte 3
+       %B = add long %A, %Y 
+        ret long %B
+}
+