Fix hyphenation in output comment

llvm-svn: 19954
This commit is contained in:
Misha Brukman 2005-01-31 06:19:57 +00:00
parent 72684fecf8
commit 8dfa2e4465
1 changed files with 1 additions and 1 deletions

View File

@ -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));