avoid ambiguity in target selection
[oota-llvm.git] / test / CodeGen / Generic / shift-int64.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc
2
3 long %test_imm(long %X) {
4    %Y = shr long %X, ubyte 17 
5    ret long %Y
6 }
7
8 long %test_variable(long %X, ubyte %Amt) {
9    %Y = shr long %X, ubyte %Amt
10    ret long %Y
11 }