Fix hyphenation in output comment
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 31 Jan 2005 06:19:57 +0000 (06:19 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 31 Jan 2005 06:19:57 +0000 (06:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19954 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.cpp

index 6195b7678dc279a2a41d2de54113a583500c63e7..cb831ae5d54151fe6924065315a6c448e37d8679 100644 (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));
index 6195b7678dc279a2a41d2de54113a583500c63e7..cb831ae5d54151fe6924065315a6c448e37d8679 100644 (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));