diff options
author | Andrew Trick <atrick@apple.com> | 2011-09-13 01:59:32 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-09-13 01:59:32 +0000 |
commit | 94f2c23d24b3ca682ea192f1d9a4e2c2e0f4eeb3 (patch) | |
tree | 56fe11068f62daa9bc73ea845eccf61c8dd7d41d /test/Transforms/IndVarSimplify/floating-point-iv.ll | |
parent | cee58a69fa3f0f291c0c88ce0d29099a95495ae7 (diff) | |
download | external_llvm-94f2c23d24b3ca682ea192f1d9a4e2c2e0f4eeb3.zip external_llvm-94f2c23d24b3ca682ea192f1d9a4e2c2e0f4eeb3.tar.gz external_llvm-94f2c23d24b3ca682ea192f1d9a4e2c2e0f4eeb3.tar.bz2 |
[indvars] Fix bugs in floating point IV range checks noticed by inspection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/IndVarSimplify/floating-point-iv.ll')
-rw-r--r-- | test/Transforms/IndVarSimplify/floating-point-iv.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/IndVarSimplify/floating-point-iv.ll b/test/Transforms/IndVarSimplify/floating-point-iv.ll index 8f4b870..e334f06 100644 --- a/test/Transforms/IndVarSimplify/floating-point-iv.ll +++ b/test/Transforms/IndVarSimplify/floating-point-iv.ll @@ -67,7 +67,8 @@ bb: ; preds = %bb, %entry return: ret void ; CHECK: @test4 -; CHECK: fcmp +; CHECK-NOT: cmp +; CHECK: br i1 false } ; PR6761 @@ -84,9 +85,8 @@ define void @test5() nounwind { exit: ret void - + ; CHECK: @test5 ; CHECK: icmp eq i32 {{.*}}, 10 ; CHECK-NEXT: br i1 } - |