diff options
author | Sanjay Patel <spatel@rotateright.com> | 2018-04-16 14:13:57 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2018-04-16 14:13:57 +0000 |
commit | 1170daa2775bbbc865e98e457bc5aed1bafa767b (patch) | |
tree | 18566bb7dd96d354cc6997b9f929dd3ae8e83985 /llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp | |
parent | 77e990d88700c52ef5aa7d5e0cb5487928b26533 (diff) | |
download | bcm5719-llvm-1170daa2775bbbc865e98e457bc5aed1bafa767b.tar.gz bcm5719-llvm-1170daa2775bbbc865e98e457bc5aed1bafa767b.zip |
[InstCombine] simplify fneg+fadd folds; NFC
Two cleanups:
1. As noted in D45453, we had tests that don't need FMF that were misplaced in the 'fast-math.ll' test file.
2. This removes the final uses of dyn_castFNegVal, so that can be deleted. We use 'match' now.
llvm-svn: 330126
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp index 11cf4d21b61..f5b0d5be21a 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp @@ -1308,14 +1308,13 @@ Instruction *InstCombiner::visitFAdd(BinaryOperator &I) { if (Instruction *FoldedFAdd = foldBinOpIntoSelectOrPhi(I)) return FoldedFAdd; - // -A + B --> B - A - if (Value *LHSV = dyn_castFNegVal(LHS)) - return BinaryOperator::CreateFSubFMF(RHS, LHSV, &I); - - // A + -B --> A - B - if (!isa<Constant>(RHS)) - if (Value *V = dyn_castFNegVal(RHS)) - return BinaryOperator::CreateFSubFMF(LHS, V, &I); + Value *X; + // (-X) + Y --> Y - X + if (match(LHS, m_FNeg(m_Value(X)))) + return BinaryOperator::CreateFSubFMF(RHS, X, &I); + // Y + (-X) --> Y - X + if (match(RHS, m_FNeg(m_Value(X)))) + return BinaryOperator::CreateFSubFMF(LHS, X, &I); // Check for (fadd double (sitofp x), y), see if we can merge this into an // integer add followed by a promotion. |