diff options
author | Eric Christopher <echristo@gmail.com> | 2013-09-25 23:02:41 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-09-25 23:02:41 +0000 |
commit | 4c7e6ba7d3d458dfa95405e87ad66d42bc01729c (patch) | |
tree | a532b7119ee4b3e72a801d18019514b1cb8c8421 /llvm/lib/DebugInfo/DWARFContext.h | |
parent | 0de5359e20efea0a52b438fbfa17603a362801bd (diff) | |
download | bcm5719-llvm-4c7e6ba7d3d458dfa95405e87ad66d42bc01729c.tar.gz bcm5719-llvm-4c7e6ba7d3d458dfa95405e87ad66d42bc01729c.zip |
Dump the normal dwarf pubtypes section as well.
llvm-svn: 191408
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFContext.h')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFContext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFContext.h b/llvm/lib/DebugInfo/DWARFContext.h index 44311b8e842..03863ab8b1e 100644 --- a/llvm/lib/DebugInfo/DWARFContext.h +++ b/llvm/lib/DebugInfo/DWARFContext.h @@ -147,6 +147,7 @@ public: virtual StringRef getStringSection() = 0; virtual StringRef getRangeSection() = 0; virtual StringRef getPubNamesSection() = 0; + virtual StringRef getPubTypesSection() = 0; virtual StringRef getGnuPubNamesSection() = 0; virtual StringRef getGnuPubTypesSection() = 0; @@ -187,6 +188,7 @@ class DWARFContextInMemory : public DWARFContext { StringRef StringSection; StringRef RangeSection; StringRef PubNamesSection; + StringRef PubTypesSection; StringRef GnuPubNamesSection; StringRef GnuPubTypesSection; @@ -217,6 +219,7 @@ public: virtual StringRef getStringSection() { return StringSection; } virtual StringRef getRangeSection() { return RangeSection; } virtual StringRef getPubNamesSection() { return PubNamesSection; } + virtual StringRef getPubTypesSection() { return PubTypesSection; } virtual StringRef getGnuPubNamesSection() { return GnuPubNamesSection; } virtual StringRef getGnuPubTypesSection() { return GnuPubTypesSection; } |