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/InstructionCombining.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/InstructionCombining.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstructionCombining.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp index 167023c4ac9..af4449a9dd2 100644 --- a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp +++ b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp @@ -790,23 +790,6 @@ Value *InstCombiner::dyn_castNegVal(Value *V) const { return nullptr; } -/// Given a 'fsub' instruction, return the RHS of the instruction if the LHS is -/// a constant negative zero (which is the 'negate' form). -Value *InstCombiner::dyn_castFNegVal(Value *V, bool IgnoreZeroSign) const { - if (BinaryOperator::isFNeg(V, IgnoreZeroSign)) - return BinaryOperator::getFNegArgument(V); - - // Constants can be considered to be negated values if they can be folded. - if (ConstantFP *C = dyn_cast<ConstantFP>(V)) - return ConstantExpr::getFNeg(C); - - if (ConstantDataVector *C = dyn_cast<ConstantDataVector>(V)) - if (C->getType()->getElementType()->isFloatingPointTy()) - return ConstantExpr::getFNeg(C); - - return nullptr; -} - static Value *foldOperationIntoSelectOperand(Instruction &I, Value *SO, InstCombiner::BuilderTy &Builder) { if (auto *Cast = dyn_cast<CastInst>(&I)) |