diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-02 07:24:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-02 07:24:22 +0000 |
commit | 1472cf5b3f05f442c40a8b90480038c2e252e330 (patch) | |
tree | 65e4e8ece4561e27998e256ff5793b907639602d /llvm/lib/Target/DarwinTargetAsmInfo.cpp | |
parent | c784feba8e825a0eafc80f00fec8862e643a9e1a (diff) | |
download | bcm5719-llvm-1472cf5b3f05f442c40a8b90480038c2e252e330.tar.gz bcm5719-llvm-1472cf5b3f05f442c40a8b90480038c2e252e330.zip |
move dwarf debug info section selection stuff from TAI to
TLOF, unifying all the dwarf targets at the same time.
llvm-svn: 77889
Diffstat (limited to 'llvm/lib/Target/DarwinTargetAsmInfo.cpp')
-rw-r--r-- | llvm/lib/Target/DarwinTargetAsmInfo.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Target/DarwinTargetAsmInfo.cpp b/llvm/lib/Target/DarwinTargetAsmInfo.cpp index 041dfa9ece4..ad669f8c035 100644 --- a/llvm/lib/Target/DarwinTargetAsmInfo.cpp +++ b/llvm/lib/Target/DarwinTargetAsmInfo.cpp @@ -41,17 +41,5 @@ DarwinTargetAsmInfo::DarwinTargetAsmInfo() { // doesn't hurt anything. // FIXME: I need to get this from Triple. Is_EHSymbolPrivate = false; - - DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug"; - DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug"; - DwarfLineSection = ".section __DWARF,__debug_line,regular,debug"; - DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug"; - DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug"; - DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug"; - DwarfStrSection = ".section __DWARF,__debug_str,regular,debug"; - DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug"; - DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug"; - DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug"; - DwarfMacroInfoSection = ".section __DWARF,__debug_macinfo,regular,debug"; } |