summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFDebugArangeSet.h
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2013-10-31 18:54:20 +0000
committerAlexey Samsonov <samsonov@google.com>2013-10-31 18:54:20 +0000
commitd3cba699c1a9eb7c98b3a96036ecdea0a16cadd2 (patch)
tree76b8029821fa186a2b994b918f3d8c460d4f91ec /llvm/lib/DebugInfo/DWARFDebugArangeSet.h
parenta1e0318c42e115d11aa7da2f5b28ce8b97e15b19 (diff)
downloadbcm5719-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.h5
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];
OpenPOWER on IntegriCloud