[llvm-commits] [llvm] r79971 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp

Bill Wendling isanbard at gmail.com
Mon Aug 24 19:32:05 PDT 2009


Author: void
Date: Mon Aug 24 21:32:05 2009
New Revision: 79971

URL: http://llvm.org/viewvc/llvm-project?rev=79971&view=rev
Log:
- Emit new line after each FDE.
- Fix comment.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp?rev=79971&r1=79970&r2=79971&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp Mon Aug 24 21:32:05 2009
@@ -97,7 +97,7 @@
   Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
   Asm->EOL("CIE Return Address Column");
 
-  // If there is a personality, we need to indicate the functions location.
+  // If there is a personality, we need to indicate the function's location.
   if (Personality) {
     Asm->EmitULEB128Bytes(7);
     Asm->EOL("Augmentation Size");
@@ -240,6 +240,8 @@
       if (const char *UsedDirective = MAI->getUsedDirective())
         O << UsedDirective << EHFrameInfo.FnName << "\n\n";
   }
+
+  Asm->EOL();
 }
 
 /// SharedTypeIds - How many leading type ids two landing pads have in common.





More information about the llvm-commits mailing list