diff options
author | Eric Christopher <echristo@gmail.com> | 2012-11-27 01:40:36 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-11-27 01:40:36 +0000 |
commit | eb6363adf05b65b0ec079ad7cbcb871acdb60a8c (patch) | |
tree | 7811b63062f19b524d511d76fb82ed3ec6b26c16 /lib | |
parent | b709f9fe5a578e05c371ff58771b9d1582ff259f (diff) | |
download | external_llvm-eb6363adf05b65b0ec079ad7cbcb871acdb60a8c.zip external_llvm-eb6363adf05b65b0ec079ad7cbcb871acdb60a8c.tar.gz external_llvm-eb6363adf05b65b0ec079ad7cbcb871acdb60a8c.tar.bz2 |
The section is .debug_line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/DebugInfo/DWARFContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/DWARFContext.cpp b/lib/DebugInfo/DWARFContext.cpp index 5fa6534..91ed2d2 100644 --- a/lib/DebugInfo/DWARFContext.cpp +++ b/lib/DebugInfo/DWARFContext.cpp @@ -35,7 +35,7 @@ void DWARFContext::dump(raw_ostream &OS) { 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(); |