[InstCombine] remove duplicate test; NFC

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

llvm-svn: 299828
This commit is contained in:
Sanjay Patel 2017-04-09 21:45:52 +00:00
parent 612d5a9c5c
commit 72fbb7868a
1 changed files with 0 additions and 12 deletions

View 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
}