repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
When removing a function from the function set and adding it to deferred, we
[llvm.git]
/
test
/
Transforms
/
InstCombine
/
not-fcmp.ll
blob
ad01a6bdf1bc160a9fea1b684e992f80c95d71b0
1
; RUN: opt < %s -instcombine -S | grep "fcmp uge"
2
; PR1570
3
4
define i1 @f(float %X, float %Y) {
5
entry:
6
%tmp3 = fcmp olt float %X, %Y ; <i1> [#uses=1]
7
%toBoolnot5 = xor i1 %tmp3, true ; <i1> [#uses=1]
8
ret i1 %toBoolnot5
9
}
10