This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c2ec04c61ca [X86] Add patterns for vector and/or/xor/andn with other ty [...] new b5c7e2f9a4d [PDB] Extend IPDBSession's interface to retrieve frame data
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/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 + 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 ++ 14 files changed, 247 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