This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 68e216b09a8 [llvm-pdbutil] Add support for dumping cross module imports [...] new 3184f8d7bb0 [cfi] CFI-ICall for ThinLTO.
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/Analysis/TypeMetadataUtils.h | 7 + include/llvm/Bitcode/BitcodeWriter.h | 4 + include/llvm/Bitcode/LLVMBitCodes.h | 8 + include/llvm/IR/ModuleSummaryIndex.h | 10 ++ include/llvm/IR/ModuleSummaryIndexYAML.h | 18 +++ lib/Bitcode/Reader/BitcodeReader.cpp | 12 ++ lib/Bitcode/Writer/BitcodeWriter.cpp | 50 +++++-- lib/IR/ModuleSummaryIndex.cpp | 7 +- lib/Transforms/IPO/CrossDSOCFI.cpp | 11 ++ lib/Transforms/IPO/LowerTypeTests.cpp | 166 +++++++++++++++++++-- lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp | 50 ++++++- test/ThinLTO/X86/cfi-icall.ll | 29 ++++ test/Transforms/CrossDSOCFI/cfi_functions.ll | 23 +++ .../LowerTypeTests/Inputs/import-icall.yaml | 19 +++ test/Transforms/LowerTypeTests/export-icall.ll | 70 +++++++++ test/Transforms/LowerTypeTests/import-icall.ll | 40 +++++ tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 2 + 17 files changed, 494 insertions(+), 32 deletions(-) create mode 100644 test/ThinLTO/X86/cfi-icall.ll create mode 100644 test/Transforms/CrossDSOCFI/cfi_functions.ll create mode 100644 test/Transforms/LowerTypeTests/Inputs/import-icall.yaml create mode 100644 test/Transforms/LowerTypeTests/export-icall.ll create mode 100644 test/Transforms/LowerTypeTests/import-icall.ll