Dan Gohman | 0cb2f67 | 2009-09-11 18:36:27 +0000 | [diff] [blame^] | 1 | ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=stfiwx -o %t1 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 2 | ; RUN: grep stfiwx %t1 |
| 3 | ; RUN: not grep r1 %t1 |
Dan Gohman | 0cb2f67 | 2009-09-11 18:36:27 +0000 | [diff] [blame^] | 4 | ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=-stfiwx \ |
Dan Gohman | 2d65d35 | 2009-08-25 15:38:29 +0000 | [diff] [blame] | 5 | ; RUN: -o %t2 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 6 | ; RUN: not grep stfiwx %t2 |
| 7 | ; RUN: grep r1 %t2 |
| 8 | |
Tanya Lattner | 5ebaf3b | 2008-02-19 08:07:33 +0000 | [diff] [blame] | 9 | define 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 Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 12 | ret void |
| 13 | } |
| 14 | |
Tanya Lattner | 5ebaf3b | 2008-02-19 08:07:33 +0000 | [diff] [blame] | 15 | define 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 Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 22 | ret void |
| 23 | } |
| 24 | |