summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-05-19 20:03:53 +0000
committerChris Lattner <sabre@nondot.org>2008-05-19 20:03:53 +0000
commit6e70830af99b369babd0a8b05c7b2113e7d6223d (patch)
treef29a53702af8793c31387e209fa6051fdc14bcd1 /llvm/lib/Transforms
parentfc365b60dc6b70c8762a07c20dd4cf9a9c8c9563 (diff)
downloadbcm5719-llvm-6e70830af99b369babd0a8b05c7b2113e7d6223d.tar.gz
bcm5719-llvm-6e70830af99b369babd0a8b05c7b2113e7d6223d.zip
remove debug output
llvm-svn: 51264
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Scalar/InstructionCombining.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
index 3b341247688..62185c63d9b 100644
--- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -2516,10 +2516,8 @@ 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);
- }
}
}
OpenPOWER on IntegriCloud