Remove unused DWARFUnit::HasDIEsParsed()

It was not implemented correctly after https://reviews.llvm.org/D46810 but then
it has not been used anywhere anyway.

llvm-svn: 333452
This commit is contained in:
Jan Kratochvil 2018-05-29 19:14:46 +00:00
parent 2ca6b1f2ba
commit a3ad3c4839
2 changed files with 0 additions and 4 deletions

View File

@ -449,8 +449,6 @@ DWARFFormValue::FixedFormSizes DWARFUnit::GetFixedFormSizes() {
void DWARFUnit::SetBaseAddress(dw_addr_t base_addr) { m_base_addr = base_addr; }
bool DWARFUnit::HasDIEsParsed() const { return m_die_array.size() > 1; }
//----------------------------------------------------------------------
// Compare function DWARFDebugAranges::Range structures
//----------------------------------------------------------------------

View File

@ -118,8 +118,6 @@ public:
DWARFDIE DIE() { return DWARFDIE(this, DIEPtr()); }
bool HasDIEsParsed() const;
DWARFDIE GetDIE(dw_offset_t die_offset);
static uint8_t GetAddressByteSize(const DWARFUnit *cu);