diff options
author | Chris Lattner <sabre@nondot.org> | 2008-02-17 21:03:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-02-17 21:03:36 +0000 |
commit | dd12f96c5e2292e398f363cf352d6a95847a8a55 (patch) | |
tree | b2e7359673f3e5d22968e0882371f02ef0877180 /lib | |
parent | 5329bb22e9b6374d62919981c1ef8775b42945eb (diff) |
Fold (-x + -y) -> -(x+y) which promotes better association, fixing
the second half of PR2047
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47244 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index c9ff01b907..1ecefeb82b 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -2090,8 +2090,16 @@ Instruction *InstCombiner::visitAdd(BinaryOperator &I) { } // -A + B --> B - A - if (Value *V = dyn_castNegVal(LHS)) - return BinaryOperator::createSub(RHS, V); + // -A + -B --> -(A + B) + if (Value *LHSV = dyn_castNegVal(LHS)) { + if (Value *RHSV = dyn_castNegVal(RHS)) { + Instruction *NewAdd = BinaryOperator::createAdd(LHSV, RHSV, "sum"); + InsertNewInstBefore(NewAdd, I); + return BinaryOperator::createNeg(NewAdd); + } + + return BinaryOperator::createSub(RHS, LHSV); + } // A + -B --> A - B if (!isa<Constant>(RHS)) |