Eliminate more uses of llvm-as and llvm-dis.
[oota-llvm.git] / test / CodeGen / ARM / str_post.ll
1 ; RUN: llc < %s -march=arm | \
2 ; RUN:   grep {strh .*\\\[.*\], #-4} | count 1
3 ; RUN: llc < %s -march=arm | \
4 ; RUN:   grep {str .*\\\[.*\],} | count 1
5
6 define i16 @test1(i32* %X, i16* %A) {
7         %Y = load i32* %X               ; <i32> [#uses=1]
8         %tmp1 = trunc i32 %Y to i16             ; <i16> [#uses=1]
9         store i16 %tmp1, i16* %A
10         %tmp2 = ptrtoint i16* %A to i16         ; <i16> [#uses=1]
11         %tmp3 = sub i16 %tmp2, 4                ; <i16> [#uses=1]
12         ret i16 %tmp3
13 }
14
15 define i32 @test2(i32* %X, i32* %A) {
16         %Y = load i32* %X               ; <i32> [#uses=1]
17         store i32 %Y, i32* %A
18         %tmp1 = ptrtoint i32* %A to i32         ; <i32> [#uses=1]
19         %tmp2 = sub i32 %tmp1, 4                ; <i32> [#uses=1]
20         ret i32 %tmp2
21 }