diff options
author | Wolfgang Pieb <Wolfgang.Pieb@sony.com> | 2018-04-05 21:01:49 +0000 |
---|---|---|
committer | Wolfgang Pieb <Wolfgang.Pieb@sony.com> | 2018-04-05 21:01:49 +0000 |
commit | 3fb9e3f39815ae9105ca9196c4f16bb554abd0c7 (patch) | |
tree | d88d2bda5778f7c7781edf70ee22574e92838887 /llvm/lib/DebugInfo/DWARF/DWARFContext.cpp | |
parent | 9b41cac3e9a14a06cc2f5583554faba40e69e0f3 (diff) | |
download | bcm5719-llvm-3fb9e3f39815ae9105ca9196c4f16bb554abd0c7.tar.gz bcm5719-llvm-3fb9e3f39815ae9105ca9196c4f16bb554abd0c7.zip |
[DWARF v5][NFC]: Refactor DebugRnglists to prepare for the support of the DW_AT_ranges
attribute in conjunction with .debug_rnglists.
Reviewers: JDevlieghere
Differential Revision: https://reviews.llvm.org/D45307
llvm-svn: 329345
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF/DWARFContext.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp b/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp index 2e3603434ba..b3564f030eb 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp @@ -499,7 +499,7 @@ void DWARFContext::dump( isLittleEndian(), 0); uint32_t Offset = 0; while (rnglistData.isValidOffset(Offset)) { - DWARFDebugRnglists Rnglists; + DWARFDebugRnglistTable Rnglists; uint32_t TableOffset = Offset; if (Error Err = Rnglists.extract(rnglistData, &Offset)) { errs() << "error: " + toString(std::move(Err)) << '\n'; |