[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp

Jim Laskey jlaskey at apple.com
Tue Oct 17 04:31:11 PDT 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCTargetAsmInfo.cpp updated: 1.6 -> 1.7
---
Log message:

Use S_debug for dwarf info.

---
Diffs of the changes:  (+11 -11)

 PPCTargetAsmInfo.cpp |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)


Index: llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp:1.6 llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp:1.7
--- llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp:1.6	Wed Oct  4 22:13:59 2006
+++ llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp	Tue Oct 17 06:30:57 2006
@@ -37,16 +37,16 @@
   
   NeedsSet = true;
   AddressSize = isPPC64 ? 8 : 4;
-  DwarfAbbrevSection = ".section __DWARF,__debug_abbrev";
-  DwarfInfoSection = ".section __DWARF,__debug_info";
-  DwarfLineSection = ".section __DWARF,__debug_line";
-  DwarfFrameSection = ".section __DWARF,__debug_frame";
-  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";
+  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";
 }
 






More information about the llvm-commits mailing list