This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 42a025965e8 [RISCV] MC layer support for the standard RV32D instruction [...] new 06535b0f5a2 [RISCV] MC layer support for the standard RV64I instructions new b9b4df7d228 [Testing/Support] Make matchers work with Expected<T&> new 94253b30509 [RISCV] MC layer support for the standard RV64M instruction [...] new 29d7ea36947 [RISCV] MC layer support for the standard RV64A instruction [...]
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/Testing/Support/Error.h | 16 +-- include/llvm/Testing/Support/SupportHelpers.h | 7 +- lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 46 +++++-- lib/Target/RISCV/RISCV.td | 2 + lib/Target/RISCV/RISCVInstrFormats.td | 17 +++ lib/Target/RISCV/RISCVInstrInfo.td | 64 ++++++++- lib/Target/RISCV/RISCVInstrInfoA.td | 14 ++ lib/Target/RISCV/RISCVInstrInfoM.td | 8 ++ test/MC/RISCV/rv32a-invalid.s | 3 + test/MC/RISCV/rv32i-invalid.s | 4 +- test/MC/RISCV/rv32m-invalid.s | 9 ++ test/MC/RISCV/rv64a-invalid.s | 14 ++ test/MC/RISCV/rv64a-valid.s | 189 ++++++++++++++++++++++++++ test/MC/RISCV/rv64i-invalid.s | 20 +++ test/MC/RISCV/rv64i-valid.s | 98 +++++++++++++ test/MC/RISCV/rv64m-valid.s | 20 +++ unittests/Support/CMakeLists.txt | 2 + unittests/Support/ErrorTest.cpp | 40 ++++++ 18 files changed, 540 insertions(+), 33 deletions(-) create mode 100644 test/MC/RISCV/rv32m-invalid.s create mode 100644 test/MC/RISCV/rv64a-invalid.s create mode 100644 test/MC/RISCV/rv64a-valid.s create mode 100644 test/MC/RISCV/rv64i-invalid.s create mode 100644 test/MC/RISCV/rv64i-valid.s create mode 100644 test/MC/RISCV/rv64m-valid.s