This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b57fbc7 Fix incorrect assertion in AVRFrameLowering.cpp new 2ce5ded [pdb] Dump Module Symbols to Yaml. new 97c245f [AVR] Add backend dependencies to MCTargetDesc/LLVMBuild.txt
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/CodeView.h | 2 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 4 + lib/DebugInfo/PDB/Raw/ModStream.cpp | 3 +- lib/Target/AVR/MCTargetDesc/LLVMBuild.txt | 2 +- test/DebugInfo/PDB/pdb-yaml-symbols.test | 186 ++++++++++++ tools/llvm-pdbdump/CMakeLists.txt | 3 +- tools/llvm-pdbdump/PdbYaml.cpp | 30 +- tools/llvm-pdbdump/PdbYaml.h | 20 ++ tools/llvm-pdbdump/YAMLOutputStyle.cpp | 23 ++ tools/llvm-pdbdump/YamlSerializationContext.h | 2 +- tools/llvm-pdbdump/YamlSymbolDumper.cpp | 322 +++++++++++++++++++++ tools/llvm-pdbdump/YamlSymbolDumper.h | 66 +++++ .../{CodeViewYaml.cpp => YamlTypeDumper.cpp} | 54 ++-- .../{CodeViewYaml.h => YamlTypeDumper.h} | 20 +- tools/llvm-pdbdump/llvm-pdbdump.cpp | 5 + tools/llvm-pdbdump/llvm-pdbdump.h | 1 + 16 files changed, 706 insertions(+), 37 deletions(-) create mode 100644 test/DebugInfo/PDB/pdb-yaml-symbols.test create mode 100644 tools/llvm-pdbdump/YamlSymbolDumper.cpp create mode 100644 tools/llvm-pdbdump/YamlSymbolDumper.h rename tools/llvm-pdbdump/{CodeViewYaml.cpp => YamlTypeDumper.cpp} (95%) rename tools/llvm-pdbdump/{CodeViewYaml.h => YamlTypeDumper.h} (83%)