test for the formation of shladd

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24077 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duraid Madina 2005-10-29 04:06:49 +00:00
parent 455fcc8d35
commit ad85677879

View File

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