This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d714ad3 [AMDGPU] Reserve VGPRs for trap handler usage if instructed new 5571fd8 Refactor some more PDB reading code into DebugInfoPDB.
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/PDB/Raw/PDBFile.h | 3 + include/llvm/DebugInfo/PDB/Raw/PDBInfoStream.h | 62 ++++++++++ include/llvm/DebugInfo/PDB/Raw/PDBNameMap.h | 34 ++++++ include/llvm/DebugInfo/PDB/Raw/PDBRawConstants.h | 31 +++++ lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/Raw/PDBInfoStream.cpp | 54 +++++++++ lib/DebugInfo/PDB/Raw/PDBNameMap.cpp | 108 ++++++++++++++++++ test/DebugInfo/PDB/pdbdump-headers.test | 17 --- tools/llvm-pdbdump/llvm-pdbdump.cpp | 139 +++-------------------- 9 files changed, 307 insertions(+), 143 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/PDBInfoStream.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/PDBNameMap.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/PDBRawConstants.h create mode 100644 lib/DebugInfo/PDB/Raw/PDBInfoStream.cpp create mode 100644 lib/DebugInfo/PDB/Raw/PDBNameMap.cpp