mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Fix combine of uno && ord -> false so that the ordering of the fcmps doesn't
matter. rdar://11579835 llvm-svn: 158084
This commit is contained in:
parent
cf188ced7f
commit
fb2fc059af
@ -986,6 +986,9 @@ Value *InstCombiner::FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS) {
|
||||
bool Op1Ordered;
|
||||
unsigned Op0Pred = getFCmpCode(Op0CC, Op0Ordered);
|
||||
unsigned Op1Pred = getFCmpCode(Op1CC, Op1Ordered);
|
||||
// uno && ord -> false
|
||||
if (Op0Pred == 0 && Op1Pred == 0 && Op0Ordered != Op1Ordered)
|
||||
return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
|
||||
if (Op1Pred == 0) {
|
||||
std::swap(LHS, RHS);
|
||||
std::swap(Op0Pred, Op1Pred);
|
||||
@ -998,7 +1001,6 @@ Value *InstCombiner::FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS) {
|
||||
return RHS;
|
||||
|
||||
// uno && oeq -> uno && (ord && eq) -> false
|
||||
// uno && ord -> false
|
||||
if (!Op0Ordered)
|
||||
return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
|
||||
// ord && ueq -> ord && (uno || eq) -> oeq
|
||||
|
@ -56,3 +56,13 @@ define zeroext i8 @t5(float %x, float %y) nounwind {
|
||||
; CHECK: t5
|
||||
; CHECK: ret i8 0
|
||||
}
|
||||
|
||||
define zeroext i8 @t6(float %x, float %y) nounwind {
|
||||
%a = fcmp uno float %x, %y
|
||||
%b = fcmp ord float %x, %y
|
||||
%c = and i1 %a, %b
|
||||
%retval = zext i1 %c to i8
|
||||
ret i8 %retval
|
||||
; CHECK: t6
|
||||
; CHECK: ret i8 0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user