This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 00a938c3c1e [PostRASink] Make sure to remove subregisters from live-ins [...] new 0c5ced81dc2 [PDB] Better support for enumerating pointer types.
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/CodeView/TypeIndex.h | 2 + include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h | 3 +- include/llvm/DebugInfo/PDB/IPDBRawSymbol.h | 23 +- .../DebugInfo/PDB/Native/NativeCompilandSymbol.h | 3 +- .../llvm/DebugInfo/PDB/Native/NativeRawSymbol.h | 3 +- .../DebugInfo/PDB/Native/NativeSymbolEnumerator.h | 3 +- .../llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h | 3 +- include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h | 3 +- .../llvm/DebugInfo/PDB/Native/NativeTypePointer.h | 11 +- include/llvm/DebugInfo/PDB/PDBSymbol.h | 3 +- lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp | 40 ++- lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp | 11 +- lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp | 11 +- .../PDB/Native/NativeSymbolEnumerator.cpp | 17 +- lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp | 5 +- lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp | 17 +- lib/DebugInfo/PDB/Native/NativeTypePointer.cpp | 79 ++++- lib/DebugInfo/PDB/Native/SymbolCache.cpp | 24 +- lib/DebugInfo/PDB/PDBSymbol.cpp | 39 ++- test/DebugInfo/PDB/Inputs/every-pointer.cpp | 48 +++ .../Inputs/{every-enum.pdb => every-pointer.pdb} | Bin 102400 -> 110592 bytes .../PDB/Native/pdb-native-compilands.test | 6 +- test/DebugInfo/PDB/Native/pdb-native-enums.test | 100 +++--- test/DebugInfo/PDB/Native/pdb-native-pointers.test | 358 +++++++++++++++++++++ tools/llvm-pdbutil/llvm-pdbutil.cpp | 26 +- 25 files changed, 720 insertions(+), 118 deletions(-) create mode 100644 test/DebugInfo/PDB/Inputs/every-pointer.cpp copy test/DebugInfo/PDB/Inputs/{every-enum.pdb => every-pointer.pdb} (63%) create mode 100644 test/DebugInfo/PDB/Native/pdb-native-pointers.test