This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d4b960be645 [X86] Add scheduling tests for SHLD/SHRD new 4dc79d9de24 [DebugInfo/PDB] Adding getUndecoratedNameEx and IPDB interf [...]
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/DIAEnumTables.h | 37 +++++++++++++ include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h | 1 + include/llvm/DebugInfo/PDB/DIA/DIASession.h | 1 + include/llvm/DebugInfo/PDB/DIA/DIATable.h | 32 ++++++++++++ include/llvm/DebugInfo/PDB/IPDBRawSymbol.h | 1 + include/llvm/DebugInfo/PDB/IPDBSession.h | 2 + include/llvm/DebugInfo/PDB/IPDBTable.h | 28 ++++++++++ .../llvm/DebugInfo/PDB/Native/NativeRawSymbol.h | 1 + include/llvm/DebugInfo/PDB/Native/NativeSession.h | 2 + include/llvm/DebugInfo/PDB/PDBTypes.h | 33 +++++++++++- lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp | 53 +++++++++++++++++++ lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp | 14 +++++ lib/DebugInfo/PDB/DIA/DIASession.cpp | 9 ++++ lib/DebugInfo/PDB/DIA/DIATable.cpp | 61 ++++++++++++++++++++++ lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp | 5 ++ lib/DebugInfo/PDB/Native/NativeSession.cpp | 4 ++ lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp | 3 ++ unittests/DebugInfo/PDB/PDBApiTest.cpp | 9 ++++ 19 files changed, 297 insertions(+), 1 deletion(-) create mode 100644 include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h create mode 100644 include/llvm/DebugInfo/PDB/DIA/DIATable.h create mode 100644 include/llvm/DebugInfo/PDB/IPDBTable.h create mode 100644 lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp create mode 100644 lib/DebugInfo/PDB/DIA/DIATable.cpp