diff options
-rw-r--r-- | llvm/test/Transforms/InstCombine/fcmp.ll | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/test/Transforms/InstCombine/fcmp.ll b/llvm/test/Transforms/InstCombine/fcmp.ll index 47b5ad07572..40f7bf9b64f 100644 --- a/llvm/test/Transforms/InstCombine/fcmp.ll +++ b/llvm/test/Transforms/InstCombine/fcmp.ll @@ -334,15 +334,3 @@ define i1 @test19_undef_ordered() nounwind { ret i1 %cmp } -; PR1570 - -define i1 @invert_fcmp(float %X, float %Y) { -; CHECK-LABEL: @invert_fcmp( -; CHECK-NEXT: [[TOBOOLNOT5:%.*]] = fcmp uge float %X, %Y -; CHECK-NEXT: ret i1 [[TOBOOLNOT5]] -; - %tmp3 = fcmp olt float %X, %Y - %toBoolnot5 = xor i1 %tmp3, true - ret i1 %toBoolnot5 -} - |