diff options
-rw-r--r-- | test/CodeGen/IA64/2005-10-29-shladd.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/IA64/2005-10-29-shladd.ll b/test/CodeGen/IA64/2005-10-29-shladd.ll new file mode 100644 index 0000000000..0f241abca6 --- /dev/null +++ b/test/CodeGen/IA64/2005-10-29-shladd.ll @@ -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 +} + |