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 00000000000..0f241abca6e --- /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 +} +