commit | 130443c9171656b4c74df5a78af23f251dbd4858 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon May 19 20:03:53 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon May 19 20:03:53 2008 +0000 |
tree | 1b8ffb6e61c3d12d3fe064eb2bab9d764d78b8c6 | |
parent | c1575ceeb798d71c6bdd2b16c2ee17db9e2b94b7 [diff] [blame] |
remove debug output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51264 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 3b34124..62185c6 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -2516,10 +2516,8 @@ 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); - } } }