From: Sanjay Patel Date: Sun, 9 Apr 2017 21:45:52 +0000 (+0000) Subject: [InstCombine] remove duplicate test; NFC X-Git-Tag: llvmorg-5.0.0-rc1~8172 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=72fbb7868a4c96dfb70622b904be1d284c7f1391;p=platform%2Fupstream%2Fllvm.git [InstCombine] remove duplicate test; NFC I moved this test to 'not.ll' in r299824 but accidentally added a copy here. llvm-svn: 299828 --- diff --git a/llvm/test/Transforms/InstCombine/fcmp.ll b/llvm/test/Transforms/InstCombine/fcmp.ll index 47b5ad0..40f7bf9 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 -} -