fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git] / test / Transforms / IndVarSimplify / 2009-04-27-Floating.ll
blob9fd2d2f04f7253effc367e3ff223048eb9f59540
1 ; RUN: opt < %s -indvars -S | grep icmp | grep next
2 ; PR4086
3 declare void @foo()
5 define void @test() {
6 entry:
7         br label %loop_body
9 loop_body:              
10         %i = phi float [ %nexti, %loop_body ], [ 0.0, %entry ]          
11         tail call void @foo()
12         %nexti = fadd float %i, 1.0
13         %less = fcmp olt float %nexti, 2.0              
14         br i1 %less, label %loop_body, label %done
16 done:           
17         ret void