This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4258537d45e [X86][BMI]: Adding full coverage of MC encoding for the BMI [...] new 5774b87aa7c [RISCV] MC layer support for the remaining RVC instructions
The 1 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: lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 69 ++++++- .../RISCV/Disassembler/RISCVDisassembler.cpp | 80 ++++++-- lib/Target/RISCV/RISCVInstrFormatsC.td | 11 + lib/Target/RISCV/RISCVInstrInfoC.td | 227 ++++++++++++++++++++- lib/Target/RISCV/RISCVRegisterInfo.td | 23 +++ test/MC/RISCV/rv32c-invalid.s | 45 ++++ test/MC/RISCV/rv32c-only-valid.s | 8 + test/MC/RISCV/rv32c-valid.s | 61 +++++- test/MC/RISCV/rv32dc-invalid.s | 12 ++ test/MC/RISCV/rv32dc-valid.s | 18 ++ test/MC/RISCV/rv32fc-invalid.s | 12 ++ test/MC/RISCV/rv32fc-valid.s | 18 ++ test/MC/RISCV/rv64c-invalid.s | 6 + test/MC/RISCV/rv64c-valid.s | 14 ++ 14 files changed, 581 insertions(+), 23 deletions(-) create mode 100644 test/MC/RISCV/rv32c-only-valid.s create mode 100644 test/MC/RISCV/rv32dc-invalid.s create mode 100644 test/MC/RISCV/rv32dc-valid.s create mode 100644 test/MC/RISCV/rv32fc-invalid.s create mode 100644 test/MC/RISCV/rv32fc-valid.s