forked from OSchip/llvm-project
[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:
parent
612d5a9c5c
commit
72fbb7868a
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue