This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 40760b733d9 [MachinePipeliner] Split MachinePipeliner code into header [...] new 7fc581a267d Revert "Revert "[PDB] Extend IPDBSession's interface to ret [...] new 8e47a8d1a66 Fix non-Windows build for D53324
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: include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h | 40 +++++++++++++++++ include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h | 41 +++++++++++++++++ include/llvm/DebugInfo/PDB/DIA/DIASession.h | 1 + include/llvm/DebugInfo/PDB/IPDBFrameData.h | 36 +++++++++++++++ include/llvm/DebugInfo/PDB/IPDBSession.h | 3 ++ include/llvm/DebugInfo/PDB/Native/NativeSession.h | 2 + include/llvm/DebugInfo/PDB/PDBTypes.h | 2 + include/llvm/module.modulemap | 2 + lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp | 43 ++++++++++++++++++ lib/DebugInfo/PDB/DIA/DIAFrameData.cpp | 54 +++++++++++++++++++++++ lib/DebugInfo/PDB/DIA/DIASession.cpp | 11 +++++ lib/DebugInfo/PDB/Native/NativeSession.cpp | 5 +++ lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp | 3 ++ unittests/DebugInfo/PDB/PDBApiTest.cpp | 4 ++ 15 files changed, 249 insertions(+) create mode 100644 include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h create mode 100644 include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h create mode 100644 include/llvm/DebugInfo/PDB/IPDBFrameData.h create mode 100644 lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp create mode 100644 lib/DebugInfo/PDB/DIA/DIAFrameData.cpp