This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0553302737f [llvm-readobj] - Rewrite reloc-types.test to use YAML. NFCI. new afefcdba98f [ARM] add target arch definitions for 8.1-M and MVE new eb6d9936ee1 [LoopIdiomRecognize][NFC] Sort includes new c1ef73e8d8a [LoopIdiom] Basic OptimizationRemarkEmitter handling new c06bb2cf410 [NFC][Codegen] Add add+sub/sub+add constant-fold tests for [...]
The 4 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/ADT/Triple.h | 1 + include/llvm/Support/ARMAttributeParser.h | 2 + include/llvm/Support/ARMBuildAttributes.h | 6 + include/llvm/Support/ARMTargetParser.def | 6 + include/llvm/Support/ARMTargetParser.h | 4 +- lib/Object/ELFObjectFile.cpp | 18 +++ lib/Support/ARMAttributeParser.cpp | 17 ++- lib/Support/ARMBuildAttrs.cpp | 1 + lib/Support/ARMTargetParser.cpp | 7 + lib/Support/Triple.cpp | 2 + lib/Target/ARM/ARM.td | 24 +++ lib/Target/ARM/ARMPredicates.td | 12 ++ lib/Target/ARM/ARMSubtarget.h | 9 +- lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp | 9 +- lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 48 +++++- test/CodeGen/AArch64/vec_add.ll | 126 ++++++++++++++++ test/CodeGen/ARM/build-attributes.ll | 9 ++ test/CodeGen/X86/vec_add.ll | 165 ++++++++++++++++++++- .../LoopIdiom/memcpy-debugify-remarks.ll | 51 +++++++ .../LoopIdiom/memset-debugify-remarks.ll | 55 +++++++ test/Transforms/LoopIdiom/nontemporal_store.ll | 2 +- unittests/Support/ARMAttributeParser.cpp | 20 +++ unittests/Support/TargetParserTest.cpp | 15 +- 23 files changed, 591 insertions(+), 18 deletions(-) create mode 100644 test/CodeGen/AArch64/vec_add.ll create mode 100644 test/Transforms/LoopIdiom/memcpy-debugify-remarks.ll create mode 100644 test/Transforms/LoopIdiom/memset-debugify-remarks.ll