From: Chris Lattner Date: Tue, 15 Sep 2009 04:45:26 +0000 (+0000) Subject: add some missing quotes in debug output X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=745c9be986bce1fb99fdbad6b9ae1307586c04a2;p=oota-llvm.git add some missing quotes in debug output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81836 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index 375151f49ff..83045cd4ab5 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -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;