From 027eaf01cf04bfee03465d98eb9c38f0cdf6273c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 18 Sep 2005 03:50:25 +0000 Subject: [PATCH] remove debug output llvm-svn: 23377 --- llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 72bc34074ccb..1e2a4647cc59 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/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); } }