diff options
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugLine.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugLine.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARFDebugLine.cpp index d2ebc384d90..c2fb111ebcf 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLine.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugLine.cpp @@ -91,6 +91,8 @@ void DWARFDebugLine::LineTable::dump(raw_ostream &OS) const { } } +DWARFDebugLine::State::~State() {} + void DWARFDebugLine::State::appendRowToMatrix(uint32_t offset) { ++row; // Increase the row number. LineTable::appendRow(*this); @@ -117,6 +119,8 @@ void DWARFDebugLine::parse(const DataExtractor debug_line_data) { } } +DWARFDebugLine::DumpingState::~DumpingState() {} + void DWARFDebugLine::DumpingState::finalize(uint32_t offset) { LineTable::dump(OS); } |