This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 033f8efd27b [Support] Use FILE_SHARE_DELETE to fix RemoveFileOnSignal o [...] new 09cd7162757 [InstCombine] narrow truncated add/sub/mul with constant new 2d30fac6e9d Enable llvm-pdbutil to list enumerations using native PDB reader
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: .../llvm/DebugInfo/PDB/Native/NativeEnumSymbol.h | 60 ++++++++++++ .../llvm/DebugInfo/PDB/Native/NativeEnumTypes.h | 51 ++++++++++ include/llvm/DebugInfo/PDB/Native/NativeSession.h | 6 ++ include/llvm/DebugInfo/PDB/PDBSymbol.h | 4 +- lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/Native/NativeEnumSymbol.cpp | 108 +++++++++++++++++++++ lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp | 59 +++++++++++ lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp | 4 + lib/DebugInfo/PDB/Native/NativeSession.cpp | 41 +++++++- lib/Transforms/InstCombine/InstCombineCasts.cpp | 27 ++++++ test/DebugInfo/PDB/Native/pdb-native-enums.test | 6 ++ test/Transforms/InstCombine/cast.ll | 12 +-- test/Transforms/InstCombine/ffs-1.ll | 10 +- test/Transforms/InstCombine/fls.ll | 4 +- test/Transforms/InstCombine/trunc.ll | 19 +++- test/Transforms/InstCombine/vec_phi_extract.ll | 2 +- tools/llvm-pdbutil/PrettyEnumDumper.cpp | 32 +++--- 17 files changed, 410 insertions(+), 37 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeEnumSymbol.h create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h create mode 100644 lib/DebugInfo/PDB/Native/NativeEnumSymbol.cpp create mode 100644 lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp create mode 100644 test/DebugInfo/PDB/Native/pdb-native-enums.test