diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-10 01:04:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-10 01:04:13 +0000 |
commit | 188a87da79f51b00522b9487ee352a50a01e5ea4 (patch) | |
tree | 370cd07362745f19e1a59446aa28f5b0e24687f9 /lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | a015c1c876bb74a83cbbae06449056e0c6f0e9c9 (diff) |
add some fixme's for MCizing. EH still has a few things that
need to be MCized, but the last debug info thing are LEB and
cygwin specific (which the MC api doesn't support yet) and
one specific form of EmitReference which I'll tackle next.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 4f44534355..b85ae3ba99 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -280,7 +280,7 @@ void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) { Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym, MCSA_NoDeadStrip); } - Asm->O << '\n'; + Asm->OutStreamer.AddBlankLine(); } /// SharedTypeIds - How many leading type ids two landing pads have in common. |