PR3686: make the legalizer handle bitcast from i80 to x86 long double.
[oota-llvm.git] / test / CodeGen / IA64 / 2005-10-29-shladd.ll
1 ; this should turn into shladd 
2 ; RUN: llvm-as < %s | llc -march=ia64 | grep shladd
3
4 define i64 @bogglesmoggle(i64 %X, i64 %Y) {
5         %A = shl i64 %X, 3              ; <i64> [#uses=1]
6         %B = add i64 %A, %Y             ; <i64> [#uses=1]
7         ret i64 %B
8 }
9