This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b6ae30c [InstCombine] Don't unpack arrays that are too large new 65f9ae1 [cmake] Treat polly as "in tree" if LLVM_EXTERNAL_POLLY_SOURC [...] new 254b4d2 Refactor Symbol visitor code. new 4be86fd Add missing include.
The 3 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: CMakeLists.txt | 2 + include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h | 80 +------ .../llvm/DebugInfo/CodeView/SymbolDeserializer.h | 61 ++++++ include/llvm/DebugInfo/CodeView/SymbolDumper.h | 4 +- include/llvm/DebugInfo/CodeView/SymbolRecord.h | 41 ++++ .../CodeView/SymbolVisitorCallbackPipeline.h | 69 ++++++ .../DebugInfo/CodeView/SymbolVisitorCallbacks.h | 49 +++++ lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/CVSymbolVisitor.cpp | 73 +++++++ lib/DebugInfo/CodeView/SymbolDumper.cpp | 242 +++++++++++++-------- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 19 +- tools/llvm-readobj/COFFDumper.cpp | 5 +- 12 files changed, 469 insertions(+), 177 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/SymbolDeserializer.h create mode 100644 include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h create mode 100644 include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h create mode 100644 lib/DebugInfo/CodeView/CVSymbolVisitor.cpp