blob: 97916f169b0f44e341421ede143536940a7ee3f7 [file] [log] [blame]
Bob Wilsone811eeb2009-10-27 06:16:45 +00001; RUN: llc < %s -march=arm | FileCheck %s
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattner246a1372008-02-17 20:02:20 +00003define i16 @test1(i32* %X, i16* %A) {
Bob Wilsone811eeb2009-10-27 06:16:45 +00004; CHECK: test1:
5; CHECK: strh {{.*}}[{{.*}}], #-4
Tanya Lattner246a1372008-02-17 20:02:20 +00006 %Y = load i32* %X ; <i32> [#uses=1]
7 %tmp1 = trunc i32 %Y to i16 ; <i16> [#uses=1]
8 store i16 %tmp1, i16* %A
9 %tmp2 = ptrtoint i16* %A to i16 ; <i16> [#uses=1]
10 %tmp3 = sub i16 %tmp2, 4 ; <i16> [#uses=1]
11 ret i16 %tmp3
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012}
13
Tanya Lattner246a1372008-02-17 20:02:20 +000014define i32 @test2(i32* %X, i32* %A) {
Bob Wilsone811eeb2009-10-27 06:16:45 +000015; CHECK: test2:
16; CHECK: str {{.*}}[{{.*}}],
Tanya Lattner246a1372008-02-17 20:02:20 +000017 %Y = load i32* %X ; <i32> [#uses=1]
18 store i32 %Y, i32* %A
19 %tmp1 = ptrtoint i32* %A to i32 ; <i32> [#uses=1]
20 %tmp2 = sub i32 %tmp1, 4 ; <i32> [#uses=1]
21 ret i32 %tmp2
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022}