This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 66ac3d52f55 Typo in LangRef.rst. NFC new 288180ac40a Make codeview::StringTable.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/DebugInfo/CodeView/StringTable.h | 70 ++++++++++++ include/llvm/DebugInfo/PDB/Native/PDBFile.h | 2 +- include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h | 4 +- include/llvm/DebugInfo/PDB/Native/PDBStringTable.h | 28 +++-- .../DebugInfo/PDB/Native/PDBStringTableBuilder.h | 20 +++- include/llvm/DebugInfo/PDB/Native/RawTypes.h | 6 +- include/llvm/Support/BinaryStreamReader.h | 4 + include/llvm/Support/BinaryStreamWriter.h | 6 +- lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/StringTable.cpp | 65 +++++++++++ lib/DebugInfo/PDB/Native/DbiStream.cpp | 2 +- lib/DebugInfo/PDB/Native/PDBFile.cpp | 9 +- lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp | 21 ++-- lib/DebugInfo/PDB/Native/PDBStringTable.cpp | 94 +++++++++------- lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp | 101 ++++++++++------- .../PDB/Native/StringTableStreamBuilder.cpp | 123 +++++++++++++++++++++ lib/Support/BinaryStreamReader.cpp | 13 +++ lib/Support/BinaryStreamWriter.cpp | 13 +++ unittests/DebugInfo/PDB/StringTableBuilderTest.cpp | 4 +- 19 files changed, 476 insertions(+), 110 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/StringTable.h create mode 100644 lib/DebugInfo/CodeView/StringTable.cpp create mode 100644 lib/DebugInfo/PDB/Native/StringTableStreamBuilder.cpp