1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix quotes in debug messages.

llvm-svn: 37630
This commit is contained in:
Devang Patel 2007-06-18 21:32:29 +00:00
parent 5b93ff84b9
commit f57b9f4d5d

View File

@ -850,7 +850,7 @@ void PMDataManager:: dumpPassInfo(Pass *P, enum PassDebuggingString S1,
cerr << "Executing Pass '" << P->getPassName();
break;
case MODIFICATION_MSG:
cerr << "' Made Modification '" << P->getPassName();
cerr << "Made Modification '" << P->getPassName();
break;
case FREEING_MSG:
cerr << " Freeing Pass '" << P->getPassName();
@ -860,19 +860,19 @@ void PMDataManager:: dumpPassInfo(Pass *P, enum PassDebuggingString S1,
}
switch (S2) {
case ON_BASICBLOCK_MSG:
cerr << "' on BasicBlock '" << Msg << "...\n";
cerr << "' on BasicBlock '" << Msg << "'...\n";
break;
case ON_FUNCTION_MSG:
cerr << "' on Function '" << Msg << "...\n";
cerr << "' on Function '" << Msg << "'...\n";
break;
case ON_MODULE_MSG:
cerr << "' on Module '" << Msg << "...\n";
cerr << "' on Module '" << Msg << "'...\n";
break;
case ON_LOOP_MSG:
cerr << "' on Loop " << Msg << "...\n";
cerr << "' on Loop " << Msg << "'...\n";
break;
case ON_CG_MSG:
cerr << "' on Call Graph " << Msg << "...\n";
cerr << "' on Call Graph " << Msg << "'...\n";
break;
default:
break;