From: Misha Brukman Date: Mon, 31 Jan 2005 06:19:57 +0000 (+0000) Subject: Fix hyphenation in output comment X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=41ce39cbd7ff58840a1df669132173d0b7add7f4;p=oota-llvm.git Fix hyphenation in output comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19954 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 6195b7678dc..cb831ae5d54 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -1122,7 +1122,7 @@ void CWriter::printFunction(Function &F) { if (const AllocaInst *AI = isDirectAlloca(&*I)) { Out << " "; printType(Out, AI->getAllocatedType(), Mang->getValueName(AI)); - Out << "; /* Address exposed local */\n"; + Out << "; /* Address-exposed local */\n"; } else if (I->getType() != Type::VoidTy && !isInlinableInst(*I)) { Out << " "; printType(Out, I->getType(), Mang->getValueName(&*I)); diff --git a/lib/Target/CBackend/Writer.cpp b/lib/Target/CBackend/Writer.cpp index 6195b7678dc..cb831ae5d54 100644 --- a/lib/Target/CBackend/Writer.cpp +++ b/lib/Target/CBackend/Writer.cpp @@ -1122,7 +1122,7 @@ void CWriter::printFunction(Function &F) { if (const AllocaInst *AI = isDirectAlloca(&*I)) { Out << " "; printType(Out, AI->getAllocatedType(), Mang->getValueName(AI)); - Out << "; /* Address exposed local */\n"; + Out << "; /* Address-exposed local */\n"; } else if (I->getType() != Type::VoidTy && !isInlinableInst(*I)) { Out << " "; printType(Out, I->getType(), Mang->getValueName(&*I));