This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4a21f022f6d [RISCV] Support @llvm.readcyclecounter() Intrinsic new 1eed3a54bfb This reverts r365061 and r365062 (test update) new 6fea0a22624 Scalable Vector IR Type with further LTO fixes
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: docs/LangRef.rst | 54 +++++--- include/llvm/ADT/DenseMapInfo.h | 16 +++ include/llvm/CodeGen/MachineBasicBlock.h | 22 --- 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 | 17 ++- lib/IR/Verifier.cpp | 7 + lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp | 8 +- test/Bitcode/compatibility.ll | 4 + test/CodeGen/X86/avoid-sfb-ignore-meta.mir | 155 --------------------- test/CodeGen/X86/pr38743.ll | 16 +-- test/Other/scalable-vector-array.ll | 8 ++ test/Other/scalable-vector-struct.ll | 8 ++ test/Verifier/scalable-global-vars.ll | 12 ++ unittests/IR/CMakeLists.txt | 1 + unittests/IR/VectorTypesTest.cpp | 164 +++++++++++++++++++++++ 24 files changed, 409 insertions(+), 228 deletions(-) create mode 100644 include/llvm/Support/ScalableSize.h delete mode 100644 test/CodeGen/X86/avoid-sfb-ignore-meta.mir create mode 100644 test/Other/scalable-vector-array.ll create mode 100644 test/Other/scalable-vector-struct.ll create mode 100644 test/Verifier/scalable-global-vars.ll create mode 100644 unittests/IR/VectorTypesTest.cpp