This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 575a9fb Revert "[pdb] Change type visitor pattern to be dynamic." new 1f4afa2 dos2unix this test. NFC. new e8d381d Resubmit "[pdb] Change type visitor pattern to be dynamic."
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 | 138 +------- include/llvm/DebugInfo/CodeView/TypeDumper.h | 33 +- include/llvm/DebugInfo/CodeView/TypeRecords.def | 3 + .../llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h | 61 ++++ include/llvm/DebugInfo/PDB/Raw/RawError.h | 1 + lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 7 +- lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 123 +++++++ lib/DebugInfo/CodeView/TypeDumper.cpp | 392 ++++++++++----------- lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 49 +-- lib/DebugInfo/PDB/Raw/RawError.cpp | 2 + lib/DebugInfo/PDB/Raw/TpiStream.cpp | 40 ++- test/CodeGen/X86/pie.ll | 90 ++--- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 12 +- tools/llvm-readobj/COFFDumper.cpp | 8 +- 15 files changed, 528 insertions(+), 432 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h create mode 100644 lib/DebugInfo/CodeView/CVTypeVisitor.cpp