This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2258207 Fix up grammar in a comment. new bbf9606 [pdb] Write the module info and symbol record streams. new ce6292c [llvm-pdbdump] Add support for diffing the String Table.
The 2 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: .../llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h | 17 +-- include/llvm/DebugInfo/PDB/Native/ModInfoBuilder.h | 74 ++++++++++ include/llvm/DebugInfo/PDB/Native/RawError.h | 1 + include/llvm/DebugInfo/PDB/Native/StringTable.h | 9 +- include/llvm/Support/BinaryStreamWriter.h | 1 + lib/DebugInfo/PDB/CMakeLists.txt | 1 + lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp | 111 ++++++--------- lib/DebugInfo/PDB/Native/ModInfoBuilder.cpp | 136 ++++++++++++++++++ lib/DebugInfo/PDB/Native/RawError.cpp | 2 + lib/DebugInfo/PDB/Native/StringTable.cpp | 13 +- lib/Support/BinaryStreamWriter.cpp | 9 ++ test/DebugInfo/PDB/Inputs/one-symbol.yaml | 11 ++ test/DebugInfo/PDB/pdb-minimal-construct.test | 11 ++ test/DebugInfo/PDB/pdbdump-yaml-types.test | 4 - tools/llvm-pdbdump/Diff.cpp | 152 ++++++++++++++++++--- tools/llvm-pdbdump/PdbYaml.cpp | 51 +++---- tools/llvm-pdbdump/PdbYaml.h | 28 ++-- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 4 +- tools/llvm-pdbdump/llvm-pdbdump.cpp | 88 ++++++------ tools/llvm-pdbdump/llvm-pdbdump.h | 1 + 20 files changed, 545 insertions(+), 179 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Native/ModInfoBuilder.h create mode 100644 lib/DebugInfo/PDB/Native/ModInfoBuilder.cpp create mode 100644 test/DebugInfo/PDB/Inputs/one-symbol.yaml create mode 100644 test/DebugInfo/PDB/pdb-minimal-construct.test