From 8dfa2e4465239a95d8939d6481f71736e3de1b1e Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 31 Jan 2005 06:19:57 +0000 Subject: [PATCH] Fix hyphenation in output comment llvm-svn: 19954 --- llvm/lib/Target/CBackend/Writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/CBackend/Writer.cpp b/llvm/lib/Target/CBackend/Writer.cpp index 6195b7678dc2..cb831ae5d541 100644 --- a/llvm/lib/Target/CBackend/Writer.cpp +++ b/llvm/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));