mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
s/getNameStr/getName/
llvm-svn: 100011
This commit is contained in:
parent
e006100c19
commit
192e50f7b1
@ -222,7 +222,7 @@ bool LPPassManager::runOnFunction(Function &F) {
|
||||
LoopPass *P = (LoopPass*)getContainedPass(Index);
|
||||
|
||||
dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
|
||||
CurrentLoop->getHeader()->getNameStr());
|
||||
CurrentLoop->getHeader()->getName());
|
||||
dumpRequiredSet(P);
|
||||
|
||||
initializeAnalysisImpl(P);
|
||||
@ -237,7 +237,7 @@ bool LPPassManager::runOnFunction(Function &F) {
|
||||
if (Changed)
|
||||
dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
|
||||
skipThisLoop ? "<deleted>" :
|
||||
CurrentLoop->getHeader()->getNameStr());
|
||||
CurrentLoop->getHeader()->getName());
|
||||
dumpPreservedSet(P);
|
||||
|
||||
if (!skipThisLoop) {
|
||||
@ -259,7 +259,7 @@ bool LPPassManager::runOnFunction(Function &F) {
|
||||
recordAvailableAnalysis(P);
|
||||
removeDeadPasses(P,
|
||||
skipThisLoop ? "<deleted>" :
|
||||
CurrentLoop->getHeader()->getNameStr(),
|
||||
CurrentLoop->getHeader()->getName(),
|
||||
ON_LOOP_MSG);
|
||||
|
||||
if (skipThisLoop)
|
||||
|
Loading…
Reference in New Issue
Block a user