mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
12 lines
231 B
LLVM
12 lines
231 B
LLVM
|
; 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
|
||
|
}
|
||
|
|