This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 71363c5318d [X86] Replace any_extend* vector extensions with zero_exten [...] new 5dae52e84b3 [NFC] Improve triple match of scripts that update tests new dae6fcf9b43 [X86] Regenerate promote.ll. NFC. new 3ec873e4ef3 [SVE][IR] Scalable Vector IR Type with pr42210 fix
The 3 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: docs/LangRef.rst | 54 +++++++---- include/llvm/ADT/DenseMapInfo.h | 16 ++++ include/llvm/IR/DerivedTypes.h | 68 +++++++++++--- include/llvm/IR/Type.h | 1 + include/llvm/Support/ScalableSize.h | 43 +++++++++ lib/AsmParser/LLLexer.cpp | 1 + lib/AsmParser/LLParser.cpp | 13 ++- lib/AsmParser/LLToken.h | 1 + lib/Bitcode/Reader/BitcodeReader.cpp | 6 +- lib/Bitcode/Writer/BitcodeWriter.cpp | 5 +- lib/IR/AsmWriter.cpp | 5 +- lib/IR/LLVMContextImpl.h | 2 +- lib/IR/Type.cpp | 13 ++- lib/IR/Verifier.cpp | 35 ++++++++ test/Bitcode/compatibility.ll | 4 + test/CodeGen/X86/promote.ll | 10 +-- test/Verifier/scalable-aggregates.ll | 27 ++++++ test/Verifier/scalable-global-vars.ll | 26 ++++++ unittests/IR/CMakeLists.txt | 1 + unittests/IR/VectorTypesTest.cpp | 164 ++++++++++++++++++++++++++++++++++ utils/UpdateTestChecks/asm.py | 69 ++++++++------ 21 files changed, 489 insertions(+), 75 deletions(-) create mode 100644 include/llvm/Support/ScalableSize.h create mode 100644 test/Verifier/scalable-aggregates.ll create mode 100644 test/Verifier/scalable-global-vars.ll create mode 100644 unittests/IR/VectorTypesTest.cpp