diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-05-22 16:07:20 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-05-22 16:07:20 +0000 |
| commit | a482d52ff46ac601ad4fd695ea2b2b7d2f56b90f (patch) | |
| tree | d62c63b520505eb5849583b55b1866fe3a66b596 /llvm/lib | |
| parent | 4dd6620dae38b5c487d78fb53aefa8569a3e8ef8 (diff) | |
| download | bcm5719-llvm-a482d52ff46ac601ad4fd695ea2b2b7d2f56b90f.tar.gz bcm5719-llvm-a482d52ff46ac601ad4fd695ea2b2b7d2f56b90f.zip | |
Fix bug: test/Regression/Transforms/SCCP/2002-05-21-InvalidSimplify.ll
Improperly handling edges... by not marking them alive properly
llvm-svn: 2707
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/SCCP.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/llvm/lib/Transforms/Scalar/SCCP.cpp b/llvm/lib/Transforms/Scalar/SCCP.cpp index 24d383b2808..591c22e231c 100644 --- a/llvm/lib/Transforms/Scalar/SCCP.cpp +++ b/llvm/lib/Transforms/Scalar/SCCP.cpp @@ -176,16 +176,6 @@ private: DEBUG_SCCP(cerr << "Marking BB Executable: " << BB); BBExecutable.insert(BB); // Basic block is executable! BBWorkList.push_back(BB); // Add the block to the work list! - - // Visit all of the PHI nodes that merge values from this block... Because - // this block is newly executable, PHI nodes that used to be constant now - // may not be. Note that we only mark PHI nodes that live in blocks that - // can execute! - // - for (Value::use_iterator I = BB->use_begin(), E = BB->use_end(); I != E;++I) - if (PHINode *PN = dyn_cast<PHINode>(*I)) - if (BBExecutable.count(PN->getParent())) - visitPHINode(PN); } @@ -487,8 +477,18 @@ void SCCP::visitTerminatorInst(TerminatorInst *TI) { // Mark all feasible successors executable... for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i) - if (SuccFeasible[i]) - markExecutable(TI->getSuccessor(i)); + if (SuccFeasible[i]) { + BasicBlock *Succ = TI->getSuccessor(i); + markExecutable(Succ); + + // Visit all of the PHI nodes that merge values from this block... + // Because this edge may be new executable, and PHI nodes that used to be + // constant now may not be. + // + for (BasicBlock::iterator I = Succ->begin(); + PHINode *PN = dyn_cast<PHINode>(*I); ++I) + visitPHINode(PN); + } } void SCCP::visitUnaryOperator(Instruction *I) { |

