diff options
author | Chris Lattner <sabre@nondot.org> | 2009-06-24 18:54:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-06-24 18:54:37 +0000 |
commit | e1225cc5cd22b797c702bcdf4663c6a7bad707b9 (patch) | |
tree | a3105cf3b21aa114a66fa2b31b9bf3a0f8dec92f /lib/Target/PowerPC/AsmPrinter | |
parent | db191f09eb4c5cc1e8b38a377896750cc6361e83 (diff) | |
download | external_llvm-e1225cc5cd22b797c702bcdf4663c6a7bad707b9.zip external_llvm-e1225cc5cd22b797c702bcdf4663c6a7bad707b9.tar.gz external_llvm-e1225cc5cd22b797c702bcdf4663c6a7bad707b9.tar.bz2 |
sink dwarf finalization out of each target into AsmPrinter::doFinalization
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/AsmPrinter')
-rw-r--r-- | lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp index a77c813..08b0de5 100644 --- a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp @@ -746,11 +746,6 @@ bool PPCLinuxAsmPrinter::doFinalization(Module &M) { I != E; ++I) printModuleLevelGV(I); - // TODO - - // Emit initial debug information. - DW->EndModule(); - return AsmPrinter::doFinalization(M); } @@ -1120,10 +1115,6 @@ bool PPCDarwinAsmPrinter::doFinalization(Module &M) { } } - - // Emit initial debug information. - DW->EndModule(); - // Funny Darwin hack: This flag tells the linker that no global symbols // contain code that falls through to other global symbols (e.g. the obvious // implementation of multiple entry points). If this doesn't occur, the |