This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2cef100 Teach fast isel about the win64 calling convention. new 32cf292 [pdb] Introduce MsfBuilder for laying out PDB files.
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/MsfBuilder.h | 136 ++++++++++ include/llvm/DebugInfo/PDB/Raw/MsfCommon.h | 83 ++++++ lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/Raw/MsfBuilder.cpp | 240 +++++++++++++++++ lib/DebugInfo/PDB/Raw/MsfCommon.cpp | 48 ++++ unittests/DebugInfo/PDB/CMakeLists.txt | 1 + unittests/DebugInfo/PDB/ErrorChecking.h | 41 +++ unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp | 20 +- unittests/DebugInfo/PDB/MsfBuilderTest.cpp | 300 ++++++++++++++++++++++ 9 files changed, 854 insertions(+), 17 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/MsfBuilder.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/MsfCommon.h create mode 100644 lib/DebugInfo/PDB/Raw/MsfBuilder.cpp create mode 100644 lib/DebugInfo/PDB/Raw/MsfCommon.cpp create mode 100644 unittests/DebugInfo/PDB/ErrorChecking.h create mode 100644 unittests/DebugInfo/PDB/MsfBuilderTest.cpp