This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 11625a0d5e4 [MSF] Move MSF unit tests to their own unittest target. new 50b0dc9e5b9 [pdb/lld] Write a valid FPM.
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/MSF/MSFCommon.h | 19 ++-- include/llvm/DebugInfo/MSF/MappedBlockStream.h | 2 +- include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h | 2 + include/llvm/Support/MathExtras.h | 5 + lib/DebugInfo/MSF/MSFBuilder.cpp | 46 ++++++++- lib/DebugInfo/MSF/MSFCommon.cpp | 19 +++- lib/DebugInfo/MSF/MappedBlockStream.cpp | 25 ++++- lib/DebugInfo/PDB/Native/PDBFile.cpp | 3 +- lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp | 28 ++++++ test/DebugInfo/PDB/write-fpm.test | 11 +++ unittests/DebugInfo/MSF/CMakeLists.txt | 1 + unittests/DebugInfo/MSF/MSFBuilderTest.cpp | 36 +++++++ unittests/DebugInfo/MSF/MSFCommonTest.cpp | 104 +++++++++++++++++++++ unittests/DebugInfo/MSF/MappedBlockStreamTest.cpp | 55 +++++++++++ 14 files changed, 336 insertions(+), 20 deletions(-) create mode 100644 test/DebugInfo/PDB/write-fpm.test create mode 100644 unittests/DebugInfo/MSF/MSFCommonTest.cpp