1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/CodeGen/IA64/2005-10-29-shladd.ll
2007-04-15 20:48:50 +00:00

12 lines
244 B
LLVM

; this should turn into shladd
; RUN: llvm-upgrade < %s | llvm-as | 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
}