1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/Alpha/zapnot4.ll
2007-01-17 07:59:14 +00:00

9 lines
256 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | 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
}