diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 09:48:23 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 09:48:23 +0000 |
| commit | 5d3ea9690f9045261c1e70c245fccc2b6b586aa6 (patch) | |
| tree | 7a7ec0dc5ad33115b17ffed8902bf8cb7e5ab289 /lib/Analysis/IPA/CallGraphSCCPass.cpp | |
| parent | 400bc6d0b5c364cd7142f4da0fedfc86dbb0f6c8 (diff) | |
| download | external_llvm-5d3ea9690f9045261c1e70c245fccc2b6b586aa6.zip external_llvm-5d3ea9690f9045261c1e70c245fccc2b6b586aa6.tar.gz external_llvm-5d3ea9690f9045261c1e70c245fccc2b6b586aa6.tar.bz2 | |
Remove Value::getName{Start,End}, the last of the old Name APIs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77152 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/CallGraphSCCPass.cpp')
| -rw-r--r-- | lib/Analysis/IPA/CallGraphSCCPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IPA/CallGraphSCCPass.cpp b/lib/Analysis/IPA/CallGraphSCCPass.cpp index 3880d0a..df2f0f8 100644 --- a/lib/Analysis/IPA/CallGraphSCCPass.cpp +++ b/lib/Analysis/IPA/CallGraphSCCPass.cpp @@ -109,7 +109,7 @@ bool CGPassManager::runOnModule(Module &M) { for (unsigned i = 0, e = SCC.size(); i != e; ++i) { Function *F = SCC[i]->getFunction(); if (F) { - dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getNameStart()); + dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getName()); Changed |= FPP->runOnFunction(*F); } } |
