llvm-6502/test/CodeGen/IA64/2005-10-29-shladd.ll

12 lines
231 B
LLVM
Raw Normal View History

; 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
}