diff options
author | Zachary Turner <zturner@google.com> | 2017-01-20 22:42:09 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-01-20 22:42:09 +0000 |
commit | 760ad4da6006422c5a6097232b5ffc72d6b906dd (patch) | |
tree | b0f54c3f60c0a83538c23b3f3cfab7f0b23fcc1f /llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp | |
parent | 60667ca0b2b95ee25dace3f8627feda5a904cd8f (diff) | |
download | bcm5719-llvm-760ad4da6006422c5a6097232b5ffc72d6b906dd.tar.gz bcm5719-llvm-760ad4da6006422c5a6097232b5ffc72d6b906dd.zip |
[pdb] Write the Named Stream mapping to Yaml and binary.
Differential Revision: https://reviews.llvm.org/D28919
llvm-svn: 292665
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp b/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp index 9334d2a6a23..9abcfbf0244 100644 --- a/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp +++ b/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp @@ -75,3 +75,7 @@ uint32_t InfoStream::getSignature() const { return Signature; } uint32_t InfoStream::getAge() const { return Age; } PDB_UniqueId InfoStream::getGuid() const { return Guid; } + +const NamedStreamMap &InfoStream::getNamedStreams() const { + return NamedStreams; +} |