diff options
author | Ed Maste <emaste@freebsd.org> | 2013-10-31 19:31:16 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2013-10-31 19:31:16 +0000 |
commit | d8f57278b829dc0e4ae67dde62eee68b896f8edb (patch) | |
tree | dd67c87b1dd2ee0973d5a574c758debce9fcd9e9 /lldb/source | |
parent | bdca387884d0af878554d6302e168e081f36be72 (diff) | |
download | bcm5719-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.h | 4 |
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; |