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 | 86f72fc3d92ca02d9ff8cd95746ae3a6f7907457 (patch) | |
tree | 15f4dd06c1c737c0501211fef4a25559ac0a4c4c /llvm/lib/CodeGen | |
parent | c80a127c4d0606e56a3e0823664b8df25a652859 (diff) | |
download | bcm5719-llvm-86f72fc3d92ca02d9ff8cd95746ae3a6f7907457.tar.gz bcm5719-llvm-86f72fc3d92ca02d9ff8cd95746ae3a6f7907457.zip |
- Emit new line after each FDE.
- Fix comment.
llvm-svn: 79971
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index a3c7705b002..b0acac2cf99 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/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. |