blob: 92911ae078c399aaded3fd24b2f1608920f7b36a [file] [log] [blame]
Chris Lattner7a4e86d2002-09-10 04:54:44 +00001; Induction variable pass is doing bad things with pointer induction vars,
2; trying to do arithmetic on them directly.
3;
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00004; RUN: opt < %s -indvars
Chris Lattner7a4e86d2002-09-10 04:54:44 +00005;
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00006define void @test(i32 %A, i32 %S, i8* %S.upgrd.1) {
7; <label>:0
8 br label %Loop
Chris Lattner7a4e86d2002-09-10 04:54:44 +00009
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000010Loop: ; 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
Chris Lattner7a4e86d2002-09-10 04:54:44 +000016}
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000017