mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
4572ce85b0
llvm-svn: 33296
12 lines
209 B
LLVM
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
|
|
}
|