diff options
| author | Jim Laskey <jlaskey@mac.com> | 2006-02-06 14:16:15 +0000 |
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2006-02-06 14:16:15 +0000 |
| commit | 58d48c8118ed8d2d4d373152b4e99fcc88f60df5 (patch) | |
| tree | 37ad17d101d763ae240499431335b2ccba8a2078 /llvm | |
| parent | ebf05bea1b02388f7a47021e0628533aa705ab09 (diff) | |
| download | bcm5719-llvm-58d48c8118ed8d2d4d373152b4e99fcc88f60df5.tar.gz bcm5719-llvm-58d48c8118ed8d2d4d373152b4e99fcc88f60df5.zip | |
We seem to have settled to __DWARF for section name.
llvm-svn: 26015
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp index 1a786291f0f..416b8c54158 100644 --- a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -222,18 +222,18 @@ namespace { : DwarfWriter(o, ap) { needsSet = true; - DwarfAbbrevSection = ".section __DWARFA,__debug_abbrev"; - DwarfInfoSection = ".section __DWARFA,__debug_info"; - DwarfLineSection = ".section __DWARFA,__debug_line"; + DwarfAbbrevSection = ".section __DWARF,__debug_abbrev"; + DwarfInfoSection = ".section __DWARF,__debug_info"; + DwarfLineSection = ".section __DWARF,__debug_line"; DwarfFrameSection = - ".section __DWARFA,__debug_frame,,coalesced,no_toc+strip_static_syms"; - DwarfPubNamesSection = ".section __DWARFA,__debug_pubnames"; - DwarfPubTypesSection = ".section __DWARFA,__debug_pubtypes"; - DwarfStrSection = ".section __DWARFA,__debug_str"; - DwarfLocSection = ".section __DWARFA,__debug_loc"; - DwarfARangesSection = ".section __DWARFA,__debug_aranges"; - DwarfRangesSection = ".section __DWARFA,__debug_ranges"; - DwarfMacInfoSection = ".section __DWARFA,__debug_macinfo"; + ".section __DWARF,__debug_frame,,coalesced,no_toc+strip_static_syms"; + DwarfPubNamesSection = ".section __DWARF,__debug_pubnames"; + DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes"; + DwarfStrSection = ".section __DWARF,__debug_str"; + DwarfLocSection = ".section __DWARF,__debug_loc"; + DwarfARangesSection = ".section __DWARF,__debug_aranges"; + DwarfRangesSection = ".section __DWARF,__debug_ranges"; + DwarfMacInfoSection = ".section __DWARF,__debug_macinfo"; TextSection = ".text"; DataSection = ".data"; } |

