diff options
author | Chris Lattner <sabre@nondot.org> | 2004-04-20 21:52:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-04-20 21:52:26 +0000 |
commit | 72035995d50084676b2f9c1db0869f81f2faccf4 (patch) | |
tree | 87db1536aa82cc0745dc3cf9d66b53b514909653 /lib/Analysis/IPA/CallGraphSCCPass.cpp | |
parent | 78637fe9d6d44c03d4b7f76abaadc01f9dfab655 (diff) |
Pass the callgraph not the module
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/CallGraphSCCPass.cpp')
-rw-r--r-- | lib/Analysis/IPA/CallGraphSCCPass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/IPA/CallGraphSCCPass.cpp b/lib/Analysis/IPA/CallGraphSCCPass.cpp index 23aedb0731..f4e2efbe1c 100644 --- a/lib/Analysis/IPA/CallGraphSCCPass.cpp +++ b/lib/Analysis/IPA/CallGraphSCCPass.cpp @@ -30,9 +30,9 @@ void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const { bool CallGraphSCCPass::run(Module &M) { CallGraph &CG = getAnalysis<CallGraph>(); - bool Changed = doInitialization(M); + bool Changed = doInitialization(CG); for (scc_iterator<CallGraph*> I = scc_begin(&CG), E = scc_end(&CG); I != E; ++I) Changed = runOnSCC(*I); - return Changed | doFinalization(M); + return Changed | doFinalization(CG); } |