aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/IPA/CallGraphSCCPass.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-31 19:35:16 +0000
committerChris Lattner <sabre@nondot.org>2003-08-31 19:35:16 +0000
commit6c5fd8e0551f99ce46908fedd502b0dbf5864c74 (patch)
tree1970621dbda53202dfb1e049450a7b4ca25ae260 /lib/Analysis/IPA/CallGraphSCCPass.cpp
parentb55cae23cb9bd6661093e8c2822be4fd721587e1 (diff)
The tarjan iterator now returns a reference to the current SCC, not a possibly null pointer!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8262 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/CallGraphSCCPass.cpp')
-rw-r--r--lib/Analysis/IPA/CallGraphSCCPass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IPA/CallGraphSCCPass.cpp b/lib/Analysis/IPA/CallGraphSCCPass.cpp
index fd5e1ca80e..031fb02d00 100644
--- a/lib/Analysis/IPA/CallGraphSCCPass.cpp
+++ b/lib/Analysis/IPA/CallGraphSCCPass.cpp
@@ -25,6 +25,6 @@ bool CallGraphSCCPass::run(Module &M) {
bool Changed = false;
for (TarjanSCC_iterator<CallGraph*> I = tarj_begin(&CG), E = tarj_end(&CG);
I != E; ++I)
- Changed = runOnSCC(**I);
+ Changed = runOnSCC(*I);
return Changed;
}