From 96768fec570941383f929428278577410d23ff63 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 25 Aug 2009 02:32:05 +0000 Subject: [PATCH] - Emit new line after each FDE. - Fix comment. llvm-svn: 79971 --- lib/CodeGen/AsmPrinter/DwarfException.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index a3c7705b002..b0acac2cf99 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -97,7 +97,7 @@ void DwarfException::EmitCommonInformationEntry(const Function *Personality, 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 @@ EmitFrameDescriptionEntry(const FunctionEHFrameInfo &EHFrameInfo) { 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.