mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 07:32:48 +00:00
9 lines
241 B
LLVM
9 lines
241 B
LLVM
|
; RUN: llvm-as < %s | llc -march=alpha | grep zapnot
|
||
|
|
||
|
ulong %foo(ulong %y) {
|
||
|
%tmp = shl ulong %y, ubyte 3 ; <ulong> [#uses=1]
|
||
|
%tmp2 = and ulong %tmp, 65535 ; <ulong> [#uses=1]
|
||
|
ret ulong %tmp2
|
||
|
}
|
||
|
|