Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / llvm / test / Transforms / IndVarSimplify / 2009-04-27-Floating.ll
blobeb9ba7f3ea51a38172cfb84ec51967aa56e6ad0c
1 ; RUN: opt < %s -passes=indvars -S | FileCheck %s
2 ; PR4086
4 ; Provide legal integer types.
5 target datalayout = "n8:16:32:64"
7 declare void @foo()
9 define void @test() {
10 entry:
11         br label %loop_body
13 loop_body:
14         %i = phi float [ %nexti, %loop_body ], [ 0.0, %entry ]
15         tail call void @foo()
16         %nexti = fadd float %i, 1.0
17         ; CHECK: icmp ne i32 %{{[a-zA-Z$._0-9]+}}, 2
18         %less = fcmp olt float %nexti, 2.0
19         br i1 %less, label %loop_body, label %done
21 done:
22         ret void