diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-10-31 18:54:20 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-10-31 18:54:20 +0000 |
commit | d3cba699c1a9eb7c98b3a96036ecdea0a16cadd2 (patch) | |
tree | 76b8029821fa186a2b994b918f3d8c460d4f91ec /llvm/lib/DebugInfo/DWARFDebugArangeSet.h | |
parent | a1e0318c42e115d11aa7da2f5b28ce8b97e15b19 (diff) | |
download | bcm5719-llvm-d3cba699c1a9eb7c98b3a96036ecdea0a16cadd2.tar.gz bcm5719-llvm-d3cba699c1a9eb7c98b3a96036ecdea0a16cadd2.zip |
DWARFDebugArangeSet: remove dead code
llvm-svn: 193785
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugArangeSet.h')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugArangeSet.h | 5 |
1 files changed, 0 insertions, 5 deletions
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<Descriptor> 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]; |