[llvm] r299828 - [InstCombine] remove duplicate test; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 9 14:45:53 PDT 2017


Author: spatel
Date: Sun Apr  9 16:45:52 2017
New Revision: 299828

URL: http://llvm.org/viewvc/llvm-project?rev=299828&view=rev
Log:
[InstCombine] remove duplicate test; NFC

I moved this test to 'not.ll' in r299824 but accidentally added a copy here.

Modified:
    llvm/trunk/test/Transforms/InstCombine/fcmp.ll

Modified: llvm/trunk/test/Transforms/InstCombine/fcmp.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/fcmp.ll?rev=299828&r1=299827&r2=299828&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/fcmp.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/fcmp.ll Sun Apr  9 16:45:52 2017
@@ -334,15 +334,3 @@ define i1 @test19_undef_ordered() nounwi
   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
-}
-




More information about the llvm-commits mailing list