Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | ; Induction variable pass is doing bad things with pointer induction vars, |
| 2 | ; trying to do arithmetic on them directly. |
| 3 | ; |
Dan Gohman | 3c7d308 | 2009-09-11 18:01:28 +0000 | [diff] [blame] | 4 | ; RUN: opt < %s -indvars |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 5 | ; |
Tanya Lattner | 4c4d0b8 | 2008-03-01 09:15:35 +0000 | [diff] [blame] | 6 | define void @test(i32 %A, i32 %S, i8* %S.upgrd.1) { |
| 7 | ; <label>:0 |
| 8 | br label %Loop |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 9 | |
Tanya Lattner | 4c4d0b8 | 2008-03-01 09:15:35 +0000 | [diff] [blame] | 10 | Loop: ; preds = %Loop, %0 |
| 11 | %PIV = phi i8* [ %S.upgrd.1, %0 ], [ %PIVNext.upgrd.3, %Loop ] ; <i8*> [#uses=1] |
| 12 | %PIV.upgrd.2 = ptrtoint i8* %PIV to i64 ; <i64> [#uses=1] |
| 13 | %PIVNext = add i64 %PIV.upgrd.2, 8 ; <i64> [#uses=1] |
| 14 | %PIVNext.upgrd.3 = inttoptr i64 %PIVNext to i8* ; <i8*> [#uses=1] |
| 15 | br label %Loop |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 16 | } |
Tanya Lattner | 4c4d0b8 | 2008-03-01 09:15:35 +0000 | [diff] [blame] | 17 | |