This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 14d8d03fe25 Revert "[mips] Guard traps for microMIPS correctly" new 3eda0067794 [PDB] Support dumping injected sources via the DIA reader.
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: .../DebugInfo/PDB/DIA/DIAEnumInjectedSources.h | 40 +++++++++++ include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h | 40 +++++++++++ include/llvm/DebugInfo/PDB/DIA/DIASession.h | 3 + include/llvm/DebugInfo/PDB/DIA/DIAUtils.h | 31 ++++++++ include/llvm/DebugInfo/PDB/IPDBInjectedSource.h | 42 +++++++++++ include/llvm/DebugInfo/PDB/IPDBSession.h | 3 + include/llvm/DebugInfo/PDB/Native/NativeSession.h | 2 + include/llvm/DebugInfo/PDB/PDBExtras.h | 2 + include/llvm/DebugInfo/PDB/PDBTypes.h | 9 +++ lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp | 54 ++++++++++++++ lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp | 64 +++++++++++++++++ lib/DebugInfo/PDB/DIA/DIASession.cpp | 29 ++++++++ lib/DebugInfo/PDB/Native/NativeSession.cpp | 5 ++ lib/DebugInfo/PDB/PDBExtras.cpp | 12 ++++ lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp | 3 + test/tools/llvm-pdbdump/Inputs/InjectedSource.pdb | Bin 0 -> 126975 bytes test/tools/llvm-pdbdump/injected-sources.test | 16 +++++ tools/llvm-pdbutil/llvm-pdbutil.cpp | 78 +++++++++++++++++++++ 19 files changed, 435 insertions(+) create mode 100644 include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h create mode 100644 include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h create mode 100644 include/llvm/DebugInfo/PDB/DIA/DIAUtils.h create mode 100644 include/llvm/DebugInfo/PDB/IPDBInjectedSource.h create mode 100644 lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp create mode 100644 lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp create mode 100644 test/tools/llvm-pdbdump/Inputs/InjectedSource.pdb create mode 100644 test/tools/llvm-pdbdump/injected-sources.test