blob: ba813805bacc163b618f2475fdc6778a7d6576cf [file] [log] [blame]
Tanya Lattner6263f942008-02-17 20:02:20 +00001; RUN: llvm-as < %s | llc -march=arm | \
Dan Gohman28beeea2007-08-15 13:36:28 +00002; RUN: grep {strh .*\\\[.*\], #-4} | count 1
Tanya Lattner6263f942008-02-17 20:02:20 +00003; RUN: llvm-as < %s | llc -march=arm | \
Dan Gohman28beeea2007-08-15 13:36:28 +00004; RUN: grep {str .*\\\[.*\],} | count 1
Evan Cheng02b985c2007-01-19 09:20:23 +00005
Tanya Lattner6263f942008-02-17 20:02:20 +00006define 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
Evan Cheng02b985c2007-01-19 09:20:23 +000013}
14
Tanya Lattner6263f942008-02-17 20:02:20 +000015define 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
Evan Cheng02b985c2007-01-19 09:20:23 +000021}