diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-16 16:49:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-16 16:49:12 +0000 |
commit | 50b6858e2e96fa37b40e6eb0ccf76f73e18ab1df (patch) | |
tree | a345b1400fd19de3d10736cbc3e1204afd32b171 /llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp | |
parent | 5dbb244edb24a4d0804f9f06b0aacf10f9c915c2 (diff) | |
download | bcm5719-llvm-50b6858e2e96fa37b40e6eb0ccf76f73e18ab1df.tar.gz bcm5719-llvm-50b6858e2e96fa37b40e6eb0ccf76f73e18ab1df.zip |
This code does not require random access use_lists
llvm-svn: 9156
Diffstat (limited to 'llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp b/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp index d555df788a1..6e0562dddc6 100644 --- a/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp +++ b/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp @@ -154,20 +154,15 @@ bool PiNodeInserter::insertPiNodeFor(Value *V, BasicBlock *Succ, Value *Rep) { // dominates with references to the Pi node itself. // DominatorSet &DS = getAnalysis<DominatorSet>(); - for (unsigned i = 0; i < V->use_size(); ) { - if (Instruction *U = dyn_cast<Instruction>(*(V->use_begin()+i))) + for (Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ) + if (Instruction *U = dyn_cast<Instruction>(*I++)) if (U->getParent()->getParent() == Succ->getParent() && DS.dominates(Succ, U->getParent())) { // This instruction is dominated by the Pi node, replace reference to V // with a reference to the Pi node. // U->replaceUsesOfWith(V, Pi); - continue; // Do not skip the next use... } - - // This use is not dominated by the Pi node, skip it... - ++i; - } // Set up the incoming value for the Pi node... do this after uses have been // replaced, because we don't want the Pi node to refer to itself. |