summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2016-05-18 16:24:16 +0000
committerRui Ueyama <ruiu@google.com>2016-05-18 16:24:16 +0000
commit17e3d064b501d02887e51fbcc7cba6f49e807ca9 (patch)
tree50f3891d2d884b916cb92b0aa4a6705df7cde5cf /include
parentbbc289f36cc5779ab0836b286c7eca548dc3563e (diff)
pdbdump: Print out section offsets in the publics stream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269955 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/DebugInfo/PDB/Raw/PublicsStream.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h b/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
index a3cfdb81170..522a32fdb53 100644
--- a/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
+++ b/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
@@ -39,6 +39,7 @@ public:
ArrayRef<uint32_t> getHashBuckets() const { return HashBuckets; }
ArrayRef<uint32_t> getAddressMap() const { return AddressMap; }
ArrayRef<uint32_t> getThunkMap() const { return ThunkMap; }
+ ArrayRef<uint32_t> getSectionOffsets() const { return SectionOffsets; }
private:
uint32_t StreamNum;
@@ -47,6 +48,7 @@ private:
std::vector<uint32_t> HashBuckets;
std::vector<uint32_t> AddressMap;
std::vector<uint32_t> ThunkMap;
+ std::vector<uint32_t> SectionOffsets;
std::unique_ptr<HeaderInfo> Header;
std::unique_ptr<GSIHashHeader> HashHdr;