This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 312d0db0611 [DWARF] Removed dead code. The verifier functionality is pr [...] new 48370ee21fd Revert "[llvm-pdbutil] rewrite the "raw" output style."
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/CodeView.h | 5 - include/llvm/DebugInfo/CodeView/Formatters.h | 17 - include/llvm/DebugInfo/CodeView/SymbolRecord.h | 10 +- include/llvm/DebugInfo/CodeView/TypeIndex.h | 2 - .../llvm/DebugInfo/PDB/Native/ModuleDebugStream.h | 4 - include/llvm/DebugInfo/PDB/Native/PublicsStream.h | 1 - include/llvm/DebugInfo/PDB/Native/RawConstants.h | 6 +- include/llvm/DebugInfo/PDB/Native/SymbolStream.h | 4 - include/llvm/Support/BinaryStreamArray.h | 6 - include/llvm/Support/FormatProviders.h | 14 - lib/DebugInfo/CodeView/SymbolDumper.cpp | 8 +- lib/DebugInfo/CodeView/SymbolRecordMapping.cpp | 4 +- lib/DebugInfo/CodeView/TypeDatabase.cpp | 71 +- lib/DebugInfo/CodeView/TypeIndex.cpp | 81 +- lib/DebugInfo/PDB/Native/PublicsStream.cpp | 9 - lib/ObjectYAML/CodeViewYAMLSymbols.cpp | 10 - test/DebugInfo/PDB/pdb-yaml-types.test | 74 + test/DebugInfo/PDB/pdbdump-debug-subsections.test | 146 +- test/DebugInfo/PDB/pdbdump-headers.test | 3982 ++++++++++++++------ .../DebugInfo/PDB/pdbdump-merge-ids-and-types.test | 106 +- test/DebugInfo/PDB/pdbdump-mergeids.test | 43 +- test/DebugInfo/PDB/pdbdump-mergetypes.test | 60 +- test/DebugInfo/PDB/pdbdump-raw-blocks.test | 64 +- test/DebugInfo/PDB/pdbdump-raw-stream.test | 51 +- test/DebugInfo/PDB/pdbdump-readwrite.test | 73 +- test/tools/llvm-pdbdump/raw-stream-data.test | 47 + tools/llvm-pdbutil/CMakeLists.txt | 5 +- tools/llvm-pdbutil/FormatUtil.cpp | 49 - tools/llvm-pdbutil/FormatUtil.h | 92 - tools/llvm-pdbutil/LLVMOutputStyle.cpp | 1198 ++++++ .../{RawOutputStyle.h => LLVMOutputStyle.h} | 35 +- tools/llvm-pdbutil/LinePrinter.cpp | 33 +- tools/llvm-pdbutil/LinePrinter.h | 31 +- tools/llvm-pdbutil/MinimalSymbolDumper.cpp | 749 ---- tools/llvm-pdbutil/MinimalSymbolDumper.h | 47 - tools/llvm-pdbutil/MinimalTypeDumper.cpp | 532 --- tools/llvm-pdbutil/MinimalTypeDumper.h | 56 - tools/llvm-pdbutil/RawOutputStyle.cpp | 668 ---- tools/llvm-pdbutil/YAMLOutputStyle.cpp | 21 +- tools/llvm-pdbutil/llvm-pdbutil.cpp | 172 +- tools/llvm-pdbutil/llvm-pdbutil.h | 45 +- 41 files changed, 4818 insertions(+), 3813 deletions(-) create mode 100644 test/DebugInfo/PDB/pdb-yaml-types.test create mode 100644 test/tools/llvm-pdbdump/raw-stream-data.test delete mode 100644 tools/llvm-pdbutil/FormatUtil.cpp delete mode 100644 tools/llvm-pdbutil/FormatUtil.h create mode 100644 tools/llvm-pdbutil/LLVMOutputStyle.cpp rename tools/llvm-pdbutil/{RawOutputStyle.h => LLVMOutputStyle.h} (62%) delete mode 100644 tools/llvm-pdbutil/MinimalSymbolDumper.cpp delete mode 100644 tools/llvm-pdbutil/MinimalSymbolDumper.h delete mode 100644 tools/llvm-pdbutil/MinimalTypeDumper.cpp delete mode 100644 tools/llvm-pdbutil/MinimalTypeDumper.h delete mode 100644 tools/llvm-pdbutil/RawOutputStyle.cpp