summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2013-10-24 20:43:47 +0000
committerEd Maste <emaste@freebsd.org>2013-10-24 20:43:47 +0000
commiteeae72184b4efc76385ee33143fcaa9198a1a07a (patch)
treead443a27e9eda409b8d9ec57b3a5ef0365a3f26b /lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
parentda13af380af2827e3332c695a8dfb59625883433 (diff)
downloadbcm5719-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.cpp6
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;
OpenPOWER on IntegriCloud