blob: d1c3f5234a26195bf7cc3e38f9cc04fcce1acfec [file] [log] [blame]
Dan Gohman0cb2f672009-09-11 18:36:27 +00001; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=stfiwx -o %t1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: grep stfiwx %t1
3; RUN: not grep r1 %t1
Dan Gohman0cb2f672009-09-11 18:36:27 +00004; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=-stfiwx \
Dan Gohman2d65d352009-08-25 15:38:29 +00005; RUN: -o %t2
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006; RUN: not grep stfiwx %t2
7; RUN: grep r1 %t2
8
Tanya Lattner5ebaf3b2008-02-19 08:07:33 +00009define void @test(float %a, i32* %b) {
10 %tmp.2 = fptosi float %a to i32 ; <i32> [#uses=1]
11 store i32 %tmp.2, i32* %b
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012 ret void
13}
14
Tanya Lattner5ebaf3b2008-02-19 08:07:33 +000015define void @test2(float %a, i32* %b, i32 %i) {
16 %tmp.2 = getelementptr i32* %b, i32 1 ; <i32*> [#uses=1]
17 %tmp.5 = getelementptr i32* %b, i32 %i ; <i32*> [#uses=1]
18 %tmp.7 = fptosi float %a to i32 ; <i32> [#uses=3]
19 store i32 %tmp.7, i32* %tmp.5
20 store i32 %tmp.7, i32* %tmp.2
21 store i32 %tmp.7, i32* %b
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022 ret void
23}
24