summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-25 02:32:05 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-25 02:32:05 +0000
commit4bda11fbdafc1d4fa97b7539bdf5a0f62ecfc280 (patch)
tree78d7d1a099338c13276769504f889e13f21f7bf8
parenta6f91da8b2500259828412de919393fca206cf29 (diff)
downloadllvm-4bda11fbdafc1d4fa97b7539bdf5a0f62ecfc280.tar.gz
llvm-4bda11fbdafc1d4fa97b7539bdf5a0f62ecfc280.tar.bz2
llvm-4bda11fbdafc1d4fa97b7539bdf5a0f62ecfc280.tar.xz
- 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
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfException.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp
index a3c7705b00..b0acac2cf9 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.