This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a4bbfe5 Fix indentation. new 7e17f48 [codeview] Dump line number and column information.
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/ModuleSubstream.h | 87 +++++++++++++++++++ .../DebugInfo/CodeView/ModuleSubstreamVisitor.h | 96 +++++++++++++++++++++ include/llvm/DebugInfo/CodeView/StreamArray.h | 85 ++++++++++++++----- include/llvm/DebugInfo/CodeView/StreamReader.h | 6 +- include/llvm/DebugInfo/PDB/Raw/DbiStream.h | 2 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 9 +- .../llvm/DebugInfo/PDB/Raw/ModuleSubstreamRecord.h | 51 ----------- include/llvm/DebugInfo/PDB/Raw/RawTypes.h | 39 --------- lib/DebugInfo/CodeView/CMakeLists.txt | 2 + .../ModuleSubstream.cpp} | 23 ++--- lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp | 98 ++++++++++++++++++++++ lib/DebugInfo/PDB/CMakeLists.txt | 1 - lib/DebugInfo/PDB/Raw/ModStream.cpp | 2 +- test/DebugInfo/PDB/pdbdump-headers.test | 25 +++++- tools/llvm-pdbdump/llvm-pdbdump.cpp | 76 ++++++++++++++--- tools/llvm-readobj/COFFDumper.cpp | 1 + 16 files changed, 448 insertions(+), 155 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/ModuleSubstream.h create mode 100644 include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h delete mode 100644 include/llvm/DebugInfo/PDB/Raw/ModuleSubstreamRecord.h rename lib/DebugInfo/{PDB/Raw/ModuleSubstreamRecord.cpp => CodeView/ModuleSubstrea [...] create mode 100644 lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp