[llvm-commits] CVS: llvm/lib/Target/CBackend/Writer.cpp

Misha Brukman brukman at cs.uiuc.edu
Sun Jan 30 22:20:08 PST 2005



Changes in directory llvm/lib/Target/CBackend:

Writer.cpp updated: 1.219 -> 1.220
---
Log message:

Fix hyphenation in output comment


---
Diffs of the changes:  (+1 -1)

 Writer.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/CBackend/Writer.cpp
diff -u llvm/lib/Target/CBackend/Writer.cpp:1.219 llvm/lib/Target/CBackend/Writer.cpp:1.220
--- llvm/lib/Target/CBackend/Writer.cpp:1.219	Sat Jan 22 22:32:47 2005
+++ llvm/lib/Target/CBackend/Writer.cpp	Mon Jan 31 00:19:57 2005
@@ -1122,7 +1122,7 @@
     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));






More information about the llvm-commits mailing list