This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 181a1d1 [X86][AVX512] Added 512-bit vector nontemporal load tests new 531b69a Adding reserve and capacity methods to FoldingSet new 2fca656 RAS extensions are part of ARMv8.2-A. This change enables the [...]
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/ADT/FoldingSet.h | 12 +- include/llvm/Support/ARMTargetParser.def | 3 +- include/llvm/Support/TargetParser.h | 1 + lib/Support/FoldingSet.cpp | 25 ++++- lib/Target/AArch64/AArch64.td | 5 +- lib/Target/AArch64/AArch64InstrInfo.td | 3 + lib/Target/AArch64/AArch64Subtarget.h | 2 + lib/Target/AArch64/Utils/AArch64BaseInfo.cpp | 15 +++ lib/Target/AArch64/Utils/AArch64BaseInfo.h | 17 ++- lib/Target/ARM/ARM.td | 39 ++++--- lib/Target/ARM/ARMISelLowering.cpp | 2 +- lib/Target/ARM/ARMInstrInfo.td | 4 + lib/Target/ARM/ARMInstrThumb2.td | 6 + lib/Target/ARM/ARMSubtarget.cpp | 3 +- lib/Target/ARM/ARMSubtarget.h | 10 +- lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 18 +++ lib/Target/ARM/Disassembler/ARMDisassembler.cpp | 31 ++++++ test/MC/AArch64/ras-extension.s | 55 ++++++++++ test/MC/ARM/ras-extension.s | 6 + test/MC/Disassembler/AArch64/ras-extension.txt | 47 ++++++++ test/MC/Disassembler/ARM/ras-extension-arm.txt | 6 + test/MC/Disassembler/ARM/ras-extension-thumb.txt | 6 + unittests/ADT/FoldingSet.cpp | 133 +++++++++++++++++++++++ 23 files changed, 418 insertions(+), 31 deletions(-) create mode 100644 test/MC/AArch64/ras-extension.s create mode 100644 test/MC/ARM/ras-extension.s create mode 100644 test/MC/Disassembler/AArch64/ras-extension.txt create mode 100644 test/MC/Disassembler/ARM/ras-extension-arm.txt create mode 100644 test/MC/Disassembler/ARM/ras-extension-thumb.txt