Fix this debug output to handle the case where the loop has been deleted.

llvm-svn: 82994
This commit is contained in:
Dan Gohman 2009-09-28 15:40:01 +00:00
parent 0bd312afd8
commit 86dc886584
1 changed files with 2 additions and 1 deletions

View File

@ -241,7 +241,8 @@ bool LPPassManager::runOnFunction(Function &F) {
if (Changed)
dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
CurrentLoop->getHeader()->getNameStr());
skipThisLoop ? "<deleted>" :
CurrentLoop->getHeader()->getNameStr());
dumpPreservedSet(P);
if (!skipThisLoop) {