This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b856c16f91f obj2yaml: Improve error reporting new bd5fe95fd22 Remove some dead code / includes. new 2757ca62d77 [CodeView] Fix random access of type names.
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: .../DebugInfo/CodeView/LazyRandomTypeCollection.h | 5 + include/llvm/DebugInfo/CodeView/TypeName.h | 22 ++ lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 2 - .../CodeView/LazyRandomTypeCollection.cpp | 24 +- lib/DebugInfo/CodeView/TypeDumpVisitor.cpp | 2 - lib/DebugInfo/CodeView/TypeName.cpp | 243 +++++++++++++++++++++ tools/llvm-pdbutil/Analyze.cpp | 28 +-- tools/llvm-pdbutil/CMakeLists.txt | 1 - tools/llvm-pdbutil/CompactTypeDumpVisitor.cpp | 59 ----- tools/llvm-pdbutil/CompactTypeDumpVisitor.h | 49 ----- tools/llvm-pdbutil/RawOutputStyle.cpp | 31 ++- tools/llvm-pdbutil/RawOutputStyle.h | 4 +- tools/llvm-pdbutil/llvm-pdbutil.cpp | 9 + tools/llvm-pdbutil/llvm-pdbutil.h | 3 + tools/llvm-readobj/COFFDumper.cpp | 1 - .../DebugInfo/CodeView/RandomAccessVisitorTest.cpp | 51 +++++ 17 files changed, 383 insertions(+), 152 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/TypeName.h create mode 100644 lib/DebugInfo/CodeView/TypeName.cpp delete mode 100644 tools/llvm-pdbutil/CompactTypeDumpVisitor.cpp delete mode 100644 tools/llvm-pdbutil/CompactTypeDumpVisitor.h