From d3cba699c1a9eb7c98b3a96036ecdea0a16cadd2 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Thu, 31 Oct 2013 18:54:20 +0000 Subject: DWARFDebugArangeSet: remove dead code llvm-svn: 193785 --- llvm/lib/DebugInfo/DWARFDebugArangeSet.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'llvm/lib/DebugInfo/DWARFDebugArangeSet.h') diff --git a/llvm/lib/DebugInfo/DWARFDebugArangeSet.h b/llvm/lib/DebugInfo/DWARFDebugArangeSet.h index d76867615aa..49a713201d1 100644 --- a/llvm/lib/DebugInfo/DWARFDebugArangeSet.h +++ b/llvm/lib/DebugInfo/DWARFDebugArangeSet.h @@ -44,7 +44,6 @@ public: private: typedef std::vector DescriptorColl; - typedef DescriptorColl::iterator DescriptorIter; typedef DescriptorColl::const_iterator DescriptorConstIter; uint32_t Offset; @@ -54,15 +53,11 @@ private: public: DWARFDebugArangeSet() { clear(); } void clear(); - void compact(); bool extract(DataExtractor data, uint32_t *offset_ptr); void dump(raw_ostream &OS) const; uint32_t getCompileUnitDIEOffset() const { return HeaderData.CuOffset; } - uint32_t getOffsetOfNextEntry() const { return Offset + HeaderData.Length + 4; } - uint32_t findAddress(uint64_t address) const; uint32_t getNumDescriptors() const { return ArangeDescriptors.size(); } - const struct Header &getHeader() const { return HeaderData; } const Descriptor *getDescriptor(uint32_t i) const { if (i < ArangeDescriptors.size()) return &ArangeDescriptors[i]; -- cgit v1.2.3