add some missing quotes in debug output

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81836 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-09-15 04:45:26 +00:00
parent 270fc1077b
commit 745c9be986

View File

@ -1041,10 +1041,10 @@ void PMDataManager::dumpPassInfo(Pass *P, enum PassDebuggingString S1,
errs() << "' on Module '" << Msg << "'...\n";
break;
case ON_LOOP_MSG:
errs() << "' on Loop " << Msg << "'...\n";
errs() << "' on Loop '" << Msg << "'...\n";
break;
case ON_CG_MSG:
errs() << "' on Call Graph " << Msg << "'...\n";
errs() << "' on Call Graph '" << Msg << "'...\n";
break;
default:
break;