aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Scalar/Reassociate.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@codeaurora.org>2016-08-17 14:31:34 +0000
committerChad Rosier <mcrosier@codeaurora.org>2016-08-17 14:31:34 +0000
commita6822f64f333e7134670625b1bcfd2eebfd2faa6 (patch)
treebc4492cac01e82649e517ab96769d5c178778107 /llvm/lib/Transforms/Scalar/Reassociate.cpp
parentcf3e8121a6c03518b2473250b277a4ce1326f5ed (diff)
downloadllvm-a6822f64f333e7134670625b1bcfd2eebfd2faa6.zip
llvm-a6822f64f333e7134670625b1bcfd2eebfd2faa6.tar.gz
llvm-a6822f64f333e7134670625b1bcfd2eebfd2faa6.tar.bz2
Revert "[Reassociate] Avoid iterator invalidation when negating value."
This reverts commit r278928 due to lit test failures. llvm-svn: 278929
Diffstat (limited to 'llvm/lib/Transforms/Scalar/Reassociate.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/Reassociate.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/Transforms/Scalar/Reassociate.cpp b/llvm/lib/Transforms/Scalar/Reassociate.cpp
index 5b3e7c5..b930a8fb 100644
--- a/llvm/lib/Transforms/Scalar/Reassociate.cpp
+++ b/llvm/lib/Transforms/Scalar/Reassociate.cpp
@@ -842,13 +842,6 @@ static Value *NegateValue(Value *V, Instruction *BI,
if (TheNeg->getParent()->getParent() != BI->getParent()->getParent())
continue;
- // Don't move the negate if it's in the block we're currently optimizing as
- // this may invalidate our iterator.
- // FIXME: We should find a more robust solution as we're missing local CSE
- // opportunities because of this constraint.
- if (TheNeg->getParent() == BI->getParent())
- continue;
-
BasicBlock::iterator InsertPt;
if (Instruction *InstInput = dyn_cast<Instruction>(V)) {
if (InvokeInst *II = dyn_cast<InvokeInst>(InstInput)) {
@@ -1870,8 +1863,6 @@ void ReassociatePass::RecursivelyEraseDeadInsts(
/// Zap the given instruction, adding interesting operands to the work list.
void ReassociatePass::EraseInst(Instruction *I) {
assert(isInstructionTriviallyDead(I) && "Trivially dead instructions only!");
- DEBUG(dbgs() << "Erasing dead inst: "; I->dump());
-
SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
// Erase the dead instruction.
ValueRankMap.erase(I);