This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 96f8a57 [InstCombine] add tests for fold with no coverage and missing [...] new e24b74a Introduce LLVM_FALLTHROUGH, which expands to the C++17 attribute. new d75cab6 Write the TPI stream from a PDB to Yaml.
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: include/llvm/DebugInfo/CodeView/CVTypeVisitor.h | 2 + include/llvm/DebugInfo/CodeView/EnumTables.h | 1 + include/llvm/DebugInfo/CodeView/TypeDeserializer.h | 37 +- include/llvm/DebugInfo/CodeView/TypeDumper.h | 1 + include/llvm/DebugInfo/CodeView/TypeRecord.h | 243 +++-- include/llvm/DebugInfo/MSF/StreamReader.h | 1 + include/llvm/Support/Compiler.h | 13 + lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 87 +- lib/DebugInfo/CodeView/EnumTables.cpp | 10 + lib/DebugInfo/CodeView/TypeDeserializer.cpp | 68 -- lib/DebugInfo/CodeView/TypeDumper.cpp | 48 +- lib/DebugInfo/CodeView/TypeRecord.cpp | 9 +- lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 14 +- test/DebugInfo/COFF/big-type.ll | 5 + test/DebugInfo/COFF/enum.ll | 1 + test/DebugInfo/COFF/inheritance.ll | 4 + test/DebugInfo/COFF/virtual-method-kinds.ll | 6 + test/DebugInfo/COFF/virtual-methods.ll | 2 + test/DebugInfo/PDB/pdbdump-headers.test | 5 + test/DebugInfo/PDB/pdbdump-yaml-types.test | 1087 ++++++++++++++++++++ tools/llvm-pdbdump/CMakeLists.txt | 1 + tools/llvm-pdbdump/CodeViewYaml.cpp | 506 +++++++++ tools/llvm-pdbdump/CodeViewYaml.h | 71 ++ tools/llvm-pdbdump/PdbYaml.cpp | 48 +- tools/llvm-pdbdump/PdbYaml.h | 25 +- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 28 + tools/llvm-pdbdump/YAMLOutputStyle.h | 1 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 7 +- tools/llvm-pdbdump/llvm-pdbdump.h | 1 + 29 files changed, 2072 insertions(+), 260 deletions(-) create mode 100644 test/DebugInfo/PDB/pdbdump-yaml-types.test create mode 100644 tools/llvm-pdbdump/CodeViewYaml.cpp create mode 100644 tools/llvm-pdbdump/CodeViewYaml.h