aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/IPA/CallGraph.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-09-19 19:01:06 +0000
committerChris Lattner <sabre@nondot.org>2004-09-19 19:01:06 +0000
commitfff03c9074ba5ee883b67d422c581f2397779264 (patch)
treee307ea0ba82722099da5fd3154278795e1e21a0c /lib/Analysis/IPA/CallGraph.cpp
parenta744b77e11a375927ffe6b807b99cd91cb55e2ba (diff)
Fix a nasty iterator invalidation problem I introduced yesterday. This
unfortunately is the cause of a bunch of failures from tonight, and the reason the tester is running so slow :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/CallGraph.cpp')
-rw-r--r--lib/Analysis/IPA/CallGraph.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp
index e3a6024889..dbf5b9f95b 100644
--- a/lib/Analysis/IPA/CallGraph.cpp
+++ b/lib/Analysis/IPA/CallGraph.cpp
@@ -211,10 +211,10 @@ void CallGraphNode::removeCallEdgeTo(CallGraphNode *Callee) {
// the specified callee function. This takes more time to execute than
// removeCallEdgeTo, so it should not be used unless necessary.
void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
- for (std::vector<CallGraphNode*>::iterator I = CalledFunctions.begin(),
- E = CalledFunctions.end(); I != E; ++I)
- if (*I == Callee) {
- CalledFunctions.erase(I);
- E = CalledFunctions.end();
+ for (unsigned i = 0, e = CalledFunctions.size(); i != e; ++i)
+ if (CalledFunctions[i] == Callee) {
+ CalledFunctions[i] = CalledFunctions.back();
+ CalledFunctions.pop_back();
+ --i; --e;
}
}