This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0f275a8f00a gn build: Merge r372264 new 79c995399f2 Add AutoUpgrade function to add new address space datalayou [...] new 7806e6abb4e gn build: Merge r372267
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: include/llvm/IR/AutoUpgrade.h | 4 ++ include/llvm/Target/TargetMachine.h | 2 +- lib/Bitcode/Reader/BitcodeReader.cpp | 5 ++ lib/IR/AutoUpgrade.cpp | 20 ++++++++ lib/Target/X86/X86TargetMachine.cpp | 16 ++---- lib/Target/X86/X86TargetMachine.h | 3 -- test/Bitcode/upgrade-datalayout.ll | 9 ++++ test/Bitcode/upgrade-datalayout2.ll | 10 ++++ test/Bitcode/upgrade-datalayout3.ll | 8 +++ unittests/Bitcode/CMakeLists.txt | 1 + unittests/Bitcode/DataLayoutUpgradeTest.cpp | 59 ++++++++++++++++++++++ utils/gn/secondary/llvm/unittests/Bitcode/BUILD.gn | 1 + 12 files changed, 121 insertions(+), 17 deletions(-) create mode 100644 test/Bitcode/upgrade-datalayout.ll create mode 100644 test/Bitcode/upgrade-datalayout2.ll create mode 100644 test/Bitcode/upgrade-datalayout3.ll create mode 100644 unittests/Bitcode/DataLayoutUpgradeTest.cpp