diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-08-25 02:32:05 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-08-25 02:32:05 +0000 |
commit | bcc93309ca3632b3cd2b45f265a534256be7589a (patch) | |
tree | 78d7d1a099338c13276769504f889e13f21f7bf8 /lib/CodeGen | |
parent | 4767b24840250630c47fee8be2a6aef07f19d30a (diff) | |
download | external_llvm-bcc93309ca3632b3cd2b45f265a534256be7589a.zip external_llvm-bcc93309ca3632b3cd2b45f265a534256be7589a.tar.gz external_llvm-bcc93309ca3632b3cd2b45f265a534256be7589a.tar.bz2 |
- Emit new line after each FDE.
- Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index a3c7705..b0acac2 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. |