Add a priority queue class, which is a wrapper around std::priority_queue
[oota-llvm.git] / test / Transforms / LoopStrengthReduce / ops_after_indvar.ll
index b4bda7e5374f6aab6199e62b07f09c6ae6c59596..5880dc15f0d24d7b04c897ec76518861cb369cd0 100644 (file)
@@ -3,20 +3,22 @@
 
 ; RUN: llvm-as < %s | opt -loop-reduce | llvm-dis | not grep INDVAR
 
-declare bool %pred()
-declare int %getidx()
+declare i1 @pred()
 
-void %test([10000 x int]* %P) {
-       br label %Loop
-Loop:
-       %INDVAR = phi int [0, %0], [%INDVAR2, %Loop]
-       %idx = call int %getidx()
-       %STRRED = getelementptr [10000 x int]* %P, int %INDVAR, int %idx
-       store int 0, int* %STRRED
+declare i32 @getidx()
 
-       %INDVAR2 = add int %INDVAR, 1
-       %cond = call bool %pred()
-       br bool %cond, label %Loop, label %Out
-Out:
+define void @test([10000 x i32]* %P) {
+; <label>:0
+       br label %Loop
+Loop:          ; preds = %Loop, %0
+       %INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ]                ; <i32> [#uses=2]
+       %idx = call i32 @getidx( )              ; <i32> [#uses=1]
+       %STRRED = getelementptr [10000 x i32]* %P, i32 %INDVAR, i32 %idx                ; <i32*> [#uses=1]
+       store i32 0, i32* %STRRED
+       %INDVAR2 = add i32 %INDVAR, 1           ; <i32> [#uses=1]
+       %cond = call i1 @pred( )                ; <i1> [#uses=1]
+       br i1 %cond, label %Loop, label %Out
+Out:           ; preds = %Loop
        ret void
 }
+