1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 07:22:55 +01:00
llvm-mirror/test/Regression/CodeGen/Generic/shift-int64.ll
Chris Lattner af30f4c392 new generic testcsae
llvm-svn: 20996
2005-04-02 02:41:55 +00:00

12 lines
194 B
LLVM

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