[InstCombine] remove duplicate test; NFC
authorSanjay Patel <spatel@rotateright.com>
Sun, 9 Apr 2017 21:45:52 +0000 (21:45 +0000)
committerSanjay Patel <spatel@rotateright.com>
Sun, 9 Apr 2017 21:45:52 +0000 (21:45 +0000)
I moved this test to 'not.ll' in r299824 but accidentally added a copy here.

llvm-svn: 299828

llvm/test/Transforms/InstCombine/fcmp.ll

index 47b5ad0..40f7bf9 100644 (file)
@@ -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
-}
-