forked from OSchip/llvm-project
Fix this debug output to handle the case where the loop has been deleted.
llvm-svn: 82994
This commit is contained in:
parent
0bd312afd8
commit
86dc886584
|
@ -241,7 +241,8 @@ bool LPPassManager::runOnFunction(Function &F) {
|
||||||
|
|
||||||
if (Changed)
|
if (Changed)
|
||||||
dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
|
dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
|
||||||
CurrentLoop->getHeader()->getNameStr());
|
skipThisLoop ? "<deleted>" :
|
||||||
|
CurrentLoop->getHeader()->getNameStr());
|
||||||
dumpPreservedSet(P);
|
dumpPreservedSet(P);
|
||||||
|
|
||||||
if (!skipThisLoop) {
|
if (!skipThisLoop) {
|
||||||
|
|
Loading…
Reference in New Issue