Fix hyphenation in output comment

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19954 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2005-01-31 06:19:57 +00:00
parent fcfe33acda
commit 41ce39cbd7
2 changed files with 2 additions and 2 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));

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