This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 84a952a3e69 [FPEnv] A missing crucial step was undocumented. new 0be2584eeaf [ARM] Code-generation infrastructure for MVE. new 87cdc0001db [AVR] Adjust to Register class change new 6b3b0e03f01 [ARM] Support inline assembler constraints for MVE.
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 | 2 + lib/Target/ARM/ARMBaseInstrInfo.cpp | 116 +++++- lib/Target/ARM/ARMBaseInstrInfo.h | 7 + lib/Target/ARM/ARMISelDAGToDAG.cpp | 32 ++ lib/Target/ARM/ARMISelLowering.cpp | 60 ++- lib/Target/ARM/ARMISelLowering.h | 1 + lib/Target/ARM/ARMInstrMVE.td | 123 ++++++ lib/Target/ARM/ARMRegisterInfo.td | 7 +- lib/Target/AVR/AVRRegisterInfo.cpp | 2 +- lib/Target/AVR/AVRRegisterInfo.h | 2 +- test/CodeGen/ARM/fast-isel-call.ll | 6 +- test/CodeGen/ARM/fp16-promote.ll | 2 +- test/CodeGen/ARM/inlineasm.ll | 24 ++ test/CodeGen/ARM/no-fpu.ll | 4 +- .../Thumb2/inlineasm-error-t-toofewregs-mve.ll | 14 + test/CodeGen/Thumb2/inlineasm-mve.ll | 48 +++ test/CodeGen/Thumb2/mve-basic.ll | 31 ++ test/CodeGen/Thumb2/mve-bitcasts.ll | 449 +++++++++++++++++++++ test/Transforms/HardwareLoops/ARM/calls.ll | 6 +- 19 files changed, 907 insertions(+), 29 deletions(-) create mode 100644 test/CodeGen/Thumb2/inlineasm-error-t-toofewregs-mve.ll create mode 100644 test/CodeGen/Thumb2/inlineasm-mve.ll create mode 100644 test/CodeGen/Thumb2/mve-basic.ll create mode 100644 test/CodeGen/Thumb2/mve-bitcasts.ll