aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-01-17 20:41:40 +0000
committerJim Laskey <jlaskey@mac.com>2006-01-17 20:41:40 +0000
commit19ef4efa70b29aa2ef2d68a60e9bdfa7a4b47d89 (patch)
tree90faae923b98d39ef52072ac48ff1988f47ff8e8 /lib/Target/PowerPC/PPCAsmPrinter.cpp
parentf90a87a44220d265299aaec4eba05defbb603da6 (diff)
Add frame work for additional dwarf sections. Comments will improve as code
is added. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25410 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCAsmPrinter.cpp')
-rw-r--r--lib/Target/PowerPC/PPCAsmPrinter.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp
index 55f54c4bae..c1285ae207 100644
--- a/lib/Target/PowerPC/PPCAsmPrinter.cpp
+++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp
@@ -215,9 +215,17 @@ namespace {
: DwarfWriter(o, ap)
{
needsSet = true;
- DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
- DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
- DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
+ DwarfAbbrevSection = ".section __DWARFA,__debug_abbrev,regular,debug";
+ DwarfInfoSection = ".section __DWARFA,__debug_info,regular,debug";
+ DwarfLineSection = ".section __DWARFA,__debug_line,regular,debug";
+ DwarfFrameSection = ".section __DWARFA,__debug_frame,regular,debug";
+ DwarfPubNamesSection = ".section __DWARFA,__debug_pubnames,regular,debug";
+ DwarfPubTypesSection = ".section __DWARFA,__debug_pubtypes,regular,debug";
+ DwarfStrSection = ".section __DWARFA,__debug_str,regular,debug";
+ DwarfLocSection = ".section __DWARFA,__debug_loc,regular,debug";
+ DwarfARangesSection = ".section __DWARFA,__debug_aranges,regular,debug";
+ DwarfRangesSection = ".section __DWARFA,__debug_ranges,regular,debug";
+ DwarfMacInfoSection = ".section __DWARFA,__debug_macinfo,regular,debug";
TextSection = ".text";
DataSection = ".data";
}