1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/Generic/shift-int64.ll
2007-01-17 07:59:14 +00:00

12 lines
209 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc
long %test_imm(long %X) {
%Y = shr long %X, ubyte 17
ret long %Y
}
long %test_variable(long %X, ubyte %Amt) {
%Y = shr long %X, ubyte %Amt
ret long %Y
}