Remove unused DWARFDebugLine length functions

llvm-svn: 193792
This commit is contained in:
Ed Maste 2013-10-31 19:31:16 +00:00
parent bdca387884
commit d8f57278b8
1 changed files with 0 additions and 4 deletions

View File

@ -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;