remove debug output
authorChris Lattner <sabre@nondot.org>
Sun, 18 Sep 2005 03:50:25 +0000 (03:50 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 18 Sep 2005 03:50:25 +0000 (03:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23377 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 72bc34074ccb4da34380e4197152c3d3ff8a5242..1e2a4647cc593d51b6b2885cc33c279c673c857d 100644 (file)
@@ -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);
       }
     }