summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2013-10-31 19:31:16 +0000
committerEd Maste <emaste@freebsd.org>2013-10-31 19:31:16 +0000
commitd8f57278b829dc0e4ae67dde62eee68b896f8edb (patch)
treedd67c87b1dd2ee0973d5a574c758debce9fcd9e9 /lldb/source
parentbdca387884d0af878554d6302e168e081f36be72 (diff)
downloadbcm5719-llvm-d8f57278b829dc0e4ae67dde62eee68b896f8edb.tar.gz
bcm5719-llvm-d8f57278b829dc0e4ae67dde62eee68b896f8edb.zip
Remove unused DWARFDebugLine length functions
llvm-svn: 193792
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
index 4f7857334a3..a380cb90b1f 100644
--- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
+++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
@@ -87,10 +87,6 @@ public:
bool is_64_bit; // 64-bit dwarf
uint32_t SizeofTotalLength() const { return is_64_bit ? 12 : 4; }
uint32_t SizeofPrologueLength() const { return is_64_bit ? 8 : 4; }
- // Length of the prologue in bytes
- uint32_t Length() const { return prologue_length + SizeofTotalLength() + sizeof(version) + SizeofPrologueLength(); }
- // Length of the line table data in bytes (not including the prologue)
- uint32_t StatementTableLength() const { return total_length + SizeofPrologueLength() - Length(); }
int32_t MaxLineIncrementForSpecialOpcode() const { return line_base + (int8_t)line_range - 1; }
bool IsValid() const;
// void Append(BinaryStreamBuf& buff) const;
OpenPOWER on IntegriCloud