Make this testcase slightly less trivial, so that it doesn't fail
[oota-llvm.git] / test / Transforms / IndVarSimplify / 2003-09-23-NotAtTop.ll
1 ; RUN: llvm-as < %s | opt -indvars  | llvm-dis | %prcontext Loop: 1 | grep %indvar
2
3 ; The indvar simplification code should ensure that the first PHI in the block 
4 ; is the canonical one!
5
6 define i32 @test() {
7 ; <label>:0
8         br label %Loop
9
10 Loop:           ; preds = %Loop, %0
11         %NonIndvar = phi i32 [ 200, %0 ], [ %NonIndvarNext, %Loop ]             ; <i32> [#uses=1]
12         %Canonical = phi i32 [ 0, %0 ], [ %CanonicalNext, %Loop ]               ; <i32> [#uses=2]
13         store i32 %Canonical, i32* null
14         %NonIndvarNext = sdiv i32 %NonIndvar, 2         ; <i32> [#uses=1]
15         %CanonicalNext = add i32 %Canonical, 1          ; <i32> [#uses=1]
16         br label %Loop
17 }
18