From e093a14cd1e151149cb307fe684ba7e4bf53dd3f Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Sun, 9 Apr 2017 21:45:52 +0000 Subject: [PATCH] [InstCombine] remove duplicate test; NFC I moved this test to 'not.ll' in r299824 but accidentally added a copy here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299828 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/fcmp.ll | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/Transforms/InstCombine/fcmp.ll b/test/Transforms/InstCombine/fcmp.ll index 47b5ad07572..40f7bf9b64f 100644 --- a/test/Transforms/InstCombine/fcmp.ll +++ b/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 -} - -- 2.40.0