commit | 9d60ba9d28c21145515878294b07c91622435632 | [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 | 5e0d71877c35030fd184ec2cbe0a0aaaa383cd71 [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); - } } }