mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 18:34:09 +00:00
remove debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51264 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5e0d71877c
commit
9d60ba9d28
@ -2516,10 +2516,8 @@ Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
|
|||||||
ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
|
ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
|
||||||
|
|
||||||
// No bits in common -> bitwise or.
|
// No bits in common -> bitwise or.
|
||||||
if ((LHSKnownZero|RHSKnownZero).isAllOnesValue()) {
|
if ((LHSKnownZero|RHSKnownZero).isAllOnesValue())
|
||||||
cerr << "HACK\n" << *LHS << *RHS << "\n";
|
|
||||||
return BinaryOperator::CreateOr(LHS, RHS);
|
return BinaryOperator::CreateOr(LHS, RHS);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user