This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 94b1780d8ae [InstCombine] Add a test case for a missed opportunity to t [...] new 3be08b1e5e1 [PDB] Merge Global and Publics Builders. new ed601f1b51b [PDB] Fix an issue writing the publics stream.
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/CodeView/SymbolDeserializer.h | 6 + .../{PublicsStreamBuilder.h => GSIStreamBuilder.h} | 49 ++-- include/llvm/DebugInfo/PDB/Native/GlobalsStream.h | 5 + .../DebugInfo/PDB/Native/GlobalsStreamBuilder.h | 50 ---- include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h | 9 +- include/llvm/DebugInfo/PDB/Native/PublicsStream.h | 3 +- lib/DebugInfo/PDB/CMakeLists.txt | 3 +- .../PDB/Native/DbiModuleDescriptorBuilder.cpp | 2 +- lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp | 301 +++++++++++++++++++++ lib/DebugInfo/PDB/Native/GlobalsStreamBuilder.cpp | 79 ------ lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp | 51 +--- lib/DebugInfo/PDB/Native/PublicsStream.cpp | 7 +- lib/DebugInfo/PDB/Native/PublicsStreamBuilder.cpp | 222 --------------- tools/llvm-pdbutil/DumpOutputStyle.cpp | 55 ++-- 14 files changed, 397 insertions(+), 445 deletions(-) rename include/llvm/DebugInfo/PDB/Native/{PublicsStreamBuilder.h => GSIStreamBuild [...] delete mode 100644 include/llvm/DebugInfo/PDB/Native/GlobalsStreamBuilder.h create mode 100644 lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp delete mode 100644 lib/DebugInfo/PDB/Native/GlobalsStreamBuilder.cpp delete mode 100644 lib/DebugInfo/PDB/Native/PublicsStreamBuilder.cpp