diff options
| author | Jim Laskey <jlaskey@mac.com> | 2006-08-03 17:27:09 +0000 |
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2006-08-03 17:27:09 +0000 |
| commit | f2c14591e66f9ed4dc14bc0cc915140afae220cf (patch) | |
| tree | 413a0fc694ebf4c165228c6c4edf6cc70adc40fd /llvm/lib/Target/X86/X86AsmPrinter.h | |
| parent | a1084234754d5c747e2d2dea2eda79fe2f6550fd (diff) | |
| download | bcm5719-llvm-f2c14591e66f9ed4dc14bc0cc915140afae220cf.tar.gz bcm5719-llvm-f2c14591e66f9ed4dc14bc0cc915140afae220cf.zip | |
Get darwin intel debugging up and running.
llvm-svn: 29504
Diffstat (limited to 'llvm/lib/Target/X86/X86AsmPrinter.h')
| -rwxr-xr-x | llvm/lib/Target/X86/X86AsmPrinter.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/llvm/lib/Target/X86/X86AsmPrinter.h b/llvm/lib/Target/X86/X86AsmPrinter.h index 8ea10d5e20f..abf0b415592 100755 --- a/llvm/lib/Target/X86/X86AsmPrinter.h +++ b/llvm/lib/Target/X86/X86AsmPrinter.h @@ -33,20 +33,20 @@ extern Statistic<> EmittedInsts; /// struct X86DwarfWriter : public DwarfWriter { X86DwarfWriter(std::ostream &o, AsmPrinter *ap) : DwarfWriter(o, ap) { - needsSet = true; - DwarfAbbrevSection = ".section __DWARFA,__debug_abbrev"; - DwarfInfoSection = ".section __DWARFA,__debug_info"; - DwarfLineSection = ".section __DWARFA,__debug_line"; - DwarfFrameSection = ".section __DWARFA,__debug_frame"; - 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"; - TextSection = ".text"; - DataSection = ".data"; + needsSet = true; + 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"; + DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug"; + TextSection = ".text"; + DataSection = ".data"; } virtual void virtfn(); // out of line virtual fn. }; |

