diff options
| author | Ed Maste <emaste@freebsd.org> | 2013-10-24 20:43:47 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@freebsd.org> | 2013-10-24 20:43:47 +0000 |
| commit | eeae72184b4efc76385ee33143fcaa9198a1a07a (patch) | |
| tree | ad443a27e9eda409b8d9ec57b3a5ef0365a3f26b /lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp | |
| parent | da13af380af2827e3332c695a8dfb59625883433 (diff) | |
| download | bcm5719-llvm-eeae72184b4efc76385ee33143fcaa9198a1a07a.tar.gz bcm5719-llvm-eeae72184b4efc76385ee33143fcaa9198a1a07a.zip | |
Introduce DWARFDataExtractor for 64-Bit DWARF parsing
Review: http://llvm-reviews.chandlerc.com/D2007
llvm-svn: 193368
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp')
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp index 47657d5089b..6773d0762a2 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// #include "DWARFDebugAbbrev.h" -#include "lldb/Core/DataExtractor.h" +#include "DWARFDataExtractor.h" #include "lldb/Core/Stream.h" using namespace lldb; @@ -30,7 +30,7 @@ DWARFAbbreviationDeclarationSet::Clear() // DWARFAbbreviationDeclarationSet::Extract() //---------------------------------------------------------------------- bool -DWARFAbbreviationDeclarationSet::Extract(const DataExtractor& data, lldb::offset_t *offset_ptr) +DWARFAbbreviationDeclarationSet::Extract(const DWARFDataExtractor& data, lldb::offset_t *offset_ptr) { const lldb::offset_t begin_offset = *offset_ptr; m_offset = begin_offset; @@ -142,7 +142,7 @@ DWARFDebugAbbrev::DWARFDebugAbbrev() : // DWARFDebugAbbrev::Parse() //---------------------------------------------------------------------- void -DWARFDebugAbbrev::Parse(const DataExtractor& data) +DWARFDebugAbbrev::Parse(const DWARFDataExtractor& data) { lldb::offset_t offset = 0; |

