Eliminate more uses of llvm-as and llvm-dis.
[oota-llvm.git] / test / CodeGen / ARM / shifter_operand.ll
1 ; RUN: llc < %s -march=arm | grep add | grep lsl
2 ; RUN: llc < %s -march=arm | grep bic | grep asr
3
4
5 define i32 @test1(i32 %X, i32 %Y, i8 %sh) {
6         %shift.upgrd.1 = zext i8 %sh to i32             ; <i32> [#uses=1]
7         %A = shl i32 %Y, %shift.upgrd.1         ; <i32> [#uses=1]
8         %B = add i32 %X, %A             ; <i32> [#uses=1]
9         ret i32 %B
10 }
11
12 define i32 @test2(i32 %X, i32 %Y, i8 %sh) {
13         %shift.upgrd.2 = zext i8 %sh to i32             ; <i32> [#uses=1]
14         %A = ashr i32 %Y, %shift.upgrd.2                ; <i32> [#uses=1]
15         %B = xor i32 %A, -1             ; <i32> [#uses=1]
16         %C = and i32 %X, %B             ; <i32> [#uses=1]
17         ret i32 %C
18 }