[llvm-commits] [llvm] r168666 - in /llvm/trunk: lib/DebugInfo/DWARFContext.cpp test/MC/MachO/gen-dwarf.s
Eric Christopher
echristo at gmail.com
Mon Nov 26 17:40:36 PST 2012
Author: echristo
Date: Mon Nov 26 19:40:36 2012
New Revision: 168666
URL: http://llvm.org/viewvc/llvm-project?rev=168666&view=rev
Log:
The section is .debug_line.
Modified:
llvm/trunk/lib/DebugInfo/DWARFContext.cpp
llvm/trunk/test/MC/MachO/gen-dwarf.s
Modified: llvm/trunk/lib/DebugInfo/DWARFContext.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFContext.cpp?rev=168666&r1=168665&r2=168666&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARFContext.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARFContext.cpp Mon Nov 26 19:40:36 2012
@@ -35,7 +35,7 @@
set.dump(OS);
uint8_t savedAddressByteSize = 0;
- OS << "\n.debug_lines contents:\n";
+ OS << "\n.debug_line contents:\n";
for (unsigned i = 0, e = getNumCompileUnits(); i != e; ++i) {
DWARFCompileUnit *cu = getCompileUnitAtIndex(i);
savedAddressByteSize = cu->getAddressByteSize();
Modified: llvm/trunk/test/MC/MachO/gen-dwarf.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/MachO/gen-dwarf.s?rev=168666&r1=168665&r2=168666&view=diff
==============================================================================
--- llvm/trunk/test/MC/MachO/gen-dwarf.s (original)
+++ llvm/trunk/test/MC/MachO/gen-dwarf.s Mon Nov 26 19:40:36 2012
@@ -86,7 +86,7 @@
// CHECK: .debug_aranges contents:
// CHECK: Address Range Header: length = 0x0000001c, version = 0x0002, cu_offset = 0x00000000, addr_size = 0x04, seg_size = 0x00
-// CHECK: .debug_lines contents:
+// CHECK: .debug_line contents:
// CHECK: Line table prologue:
// We don't check the total_length as it includes lengths of temp paths
// CHECK: version: 2
More information about the llvm-commits
mailing list