1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

remove debug output

llvm-svn: 23377
This commit is contained in:
Chris Lattner 2005-09-18 03:50:25 +00:00
parent 1466ade38b
commit c96a222019

View File

@ -1941,7 +1941,6 @@ Instruction *InstCombiner::visitOr(BinaryOperator &I) {
ConstantExpr::getAnd(C3, C2)->isNullValue() && ConstantExpr::getAnd(C3, C2)->isNullValue() &&
(C2->getRawValue() & (C2->getRawValue()+1)) == 0) { (C2->getRawValue() & (C2->getRawValue()+1)) == 0) {
// Return V+C3. // Return V+C3.
std::cerr << "Simpl: " << *A << "Simpl2: " << *B << "Simpl3: " << I;
return ReplaceInstUsesWith(I, V == A ? B : A); return ReplaceInstUsesWith(I, V == A ? B : A);
} }
} }