remove debug output

llvm-svn: 51264
This commit is contained in:
Chris Lattner 2008-05-19 20:03:53 +00:00
parent fc365b60dc
commit 6e70830af9
1 changed files with 1 additions and 3 deletions

View File

@ -2516,12 +2516,10 @@ Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
// No bits in common -> bitwise or.
if ((LHSKnownZero|RHSKnownZero).isAllOnesValue()) {
cerr << "HACK\n" << *LHS << *RHS << "\n";
if ((LHSKnownZero|RHSKnownZero).isAllOnesValue())
return BinaryOperator::CreateOr(LHS, RHS);
}
}
}
// W*X + Y*Z --> W * (X+Z) iff W == Y
if (I.getType()->isIntOrIntVector()) {