This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f8c0f51efe4 [RISCV] MC layer support for the standard RV32M instruction [...] new 9a5be1f5667 Reapply: Allow yaml2obj to order implicit sections for ELF new 2ef1ea64082 Fix 'not all control paths return a value' warning on MSVC builds new d99baa702cc [RISCV] MC layer support for the standard RV32A instruction [...]
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: lib/ExecutionEngine/SectionMemoryManager.cpp | 1 + lib/ObjectYAML/ELFYAML.cpp | 2 +- lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 37 +++++-- lib/Target/RISCV/RISCV.td | 17 ++- lib/Target/RISCV/RISCVInstrFormats.td | 18 ++++ lib/Target/RISCV/RISCVInstrInfo.td | 1 + lib/Target/RISCV/RISCVInstrInfoA.td | 63 +++++++++++ lib/Target/RISCV/RISCVSubtarget.h | 4 +- test/MC/RISCV/rv32a-invalid.s | 14 +++ test/MC/RISCV/rv32a-valid.s | 146 ++++++++++++++++++++++++++ test/MC/RISCV/rv32i-invalid.s | 2 + test/tools/yaml2obj/section-ordering.yaml | 29 +++++ test/tools/yaml2obj/unnamed-section.yaml | 22 ++++ tools/yaml2obj/yaml2elf.cpp | 81 +++++++------- 14 files changed, 385 insertions(+), 52 deletions(-) create mode 100644 lib/Target/RISCV/RISCVInstrInfoA.td create mode 100644 test/MC/RISCV/rv32a-invalid.s create mode 100644 test/MC/RISCV/rv32a-valid.s create mode 100644 test/tools/yaml2obj/section-ordering.yaml create mode 100644 test/tools/yaml2obj/unnamed-section.yaml