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

Anton Korobeynikov asl at math.spbu.ru
Tue Mar 6 18:48:18 PST 2007



Changes in directory llvm/lib/Target:

TargetAsmInfo.cpp updated: 1.19 -> 1.20
---
Log message:

Fix DWARF debugging information on x86/Linux and (hopefully) 
Mingw32/Cygwin targets. This fixes PR978: http://llvm.org/PR978 


---
Diffs of the changes:  (+3 -0)

 TargetAsmInfo.cpp |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/lib/Target/TargetAsmInfo.cpp
diff -u llvm/lib/Target/TargetAsmInfo.cpp:1.19 llvm/lib/Target/TargetAsmInfo.cpp:1.20
--- llvm/lib/Target/TargetAsmInfo.cpp:1.19	Wed Feb 21 16:43:40 2007
+++ llvm/lib/Target/TargetAsmInfo.cpp	Tue Mar  6 20:47:57 2007
@@ -69,11 +69,13 @@
   UsedDirective(0),
   WeakRefDirective(0),
   HiddenDirective("\t.hidden\t"),
+  AbsoluteSectionOffsets(false),
   HasLEB128(false),
   HasDotLoc(false),
   HasDotFile(false),
   SupportsExceptionHandling(false),
   DwarfRequiresFrameSection(true),
+  DwarfSectionOffsetDirective(0),
   DwarfAbbrevSection(".debug_abbrev"),
   DwarfInfoSection(".debug_info"),
   DwarfLineSection(".debug_line"),
@@ -106,3 +108,4 @@
   // Multiply by the worst-case length for each instruction.
   return NumInsts * MaxInstLength;
 }
+






More information about the llvm-commits mailing list