Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / LoopStrengthReduce / use_postinc_value_outside_loop.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -loop-reduce | llvm-dis | grep 'add uint %iv.*inc, 1'
2 ;
3 ; Make sure that the use of the IV outside of the loop (the store) uses the 
4 ; post incremented value of the IV, not the preincremented value.  This 
5 ; prevents the loop from having to keep the post and pre-incremented value
6 ; around for the duration of the loop, adding a copy and an extra register
7 ; to the loop.
8
9 declare bool %pred(int %X)
10
11 void %test([700 x int]* %nbeaux_.0__558, int* %i_.16574) {
12 then.0:
13         br label %no_exit.2
14
15 no_exit.2:              ; preds = %no_exit.2, %then.0
16         %indvar630 = phi uint [ 0, %then.0 ], [ %indvar.next631, %no_exit.2 ]           ; <uint> [#uses=3]
17         %indvar630 = cast uint %indvar630 to int                ; <int> [#uses=1]
18         %tmp.38 = getelementptr [700 x int]* %nbeaux_.0__558, int 0, uint %indvar630            ; <int*> [#uses=1]
19         store int 0, int* %tmp.38
20         %inc.2 = add int %indvar630, 2          ; <int> [#uses=2]
21         %tmp.34 = call bool %pred(int %indvar630)
22         %indvar.next631 = add uint %indvar630, 1                ; <uint> [#uses=1]
23         br bool %tmp.34, label %no_exit.2, label %loopexit.2.loopexit
24
25 loopexit.2.loopexit:            ; preds = %no_exit.2
26         store int %inc.2, int* %i_.16574
27         ret void
28 }