This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from bc88e8b test: Be consistent with clang's sanitizer lit config new 24466fc Make a symbol visitor and use it to dump CV symbols. new f82506b Revert r270478 "[LoopUnroll] Enable advanced unrolling analys [...]
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/CVSymbolTypes.def | 26 +- include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h | 103 +++ .../llvm/DebugInfo/CodeView/SymbolDumpDelegate.h | 37 + include/llvm/DebugInfo/CodeView/SymbolDumper.h | 54 ++ include/llvm/DebugInfo/CodeView/SymbolRecord.h | 55 +- .../DebugInfo/CodeView/SymbolVisitorDelegate.h | 33 + lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/SymbolDumper.cpp | 670 ++++++++++++++++++ lib/DebugInfo/PDB/Raw/ModStream.cpp | 2 +- lib/Transforms/Scalar/LoopUnrollPass.cpp | 6 +- .../LoopUnroll/partial-unroll-const-bounds.ll | 2 +- tools/llvm-readobj/COFFDumper.cpp | 783 ++------------------- 12 files changed, 1017 insertions(+), 755 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h create mode 100644 include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h create mode 100644 include/llvm/DebugInfo/CodeView/SymbolDumper.h create mode 100644 include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h create mode 100644 lib/DebugInfo/CodeView/SymbolDumper.cpp