diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-18 03:50:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-18 03:50:25 +0000 |
commit | 3255bd101dc214414f5668ee75a916eab66c3d18 (patch) | |
tree | 746232ae13ec913b5ae70acc486fffac7c345b51 | |
parent | e9bed7d10759e86634793d6589f894d1e44f43e8 (diff) |
remove debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23377 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 72bc34074c..1e2a4647cc 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -1941,7 +1941,6 @@ Instruction *InstCombiner::visitOr(BinaryOperator &I) { ConstantExpr::getAnd(C3, C2)->isNullValue() && (C2->getRawValue() & (C2->getRawValue()+1)) == 0) { // Return V+C3. - std::cerr << "Simpl: " << *A << "Simpl2: " << *B << "Simpl3: " << I; return ReplaceInstUsesWith(I, V == A ? B : A); } } |