This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 5d740f56a16 ipa: Improve how we derive value ranges from IPA invariants new 1a2e0fcb857 RISC-V: Rename constraint c0* to k0* new 46888571d24 RISC-V: Add cr and cf constraint new 192790e994c RISC-V: Rename internal operand modifier N to n new 2a22db391d1 RISC-V: Implment N modifier for printing the register numbe [...] new fcbb8456a58 RISC-V: Add new constraint R for register even-odd pairs
The 5 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: gcc/config/riscv/constraints.md | 20 +- gcc/config/riscv/corev.md | 14 +- gcc/config/riscv/riscv-v.cc | 2 +- gcc/config/riscv/riscv.cc | 55 ++- gcc/config/riscv/riscv.h | 6 + gcc/config/riscv/riscv.md | 2 +- gcc/config/riscv/vector-iterators.md | 444 ++++++++++----------- gcc/doc/extend.texi | 1 + gcc/doc/md.texi | 10 + gcc/testsuite/gcc.target/riscv/constraint-R.c | 23 ++ .../gcc.target/riscv/constraint-cf-zfinx.c | 14 + gcc/testsuite/gcc.target/riscv/constraint-cf.c | 14 + gcc/testsuite/gcc.target/riscv/constraint-cr.c | 13 + gcc/testsuite/gcc.target/riscv/modifier-N-fpr.c | 16 + gcc/testsuite/gcc.target/riscv/modifier-N-vr.c | 18 + gcc/testsuite/gcc.target/riscv/modifier-N.c | 16 + 16 files changed, 419 insertions(+), 249 deletions(-) create mode 100644 gcc/testsuite/gcc.target/riscv/constraint-R.c create mode 100644 gcc/testsuite/gcc.target/riscv/constraint-cf-zfinx.c create mode 100644 gcc/testsuite/gcc.target/riscv/constraint-cf.c create mode 100644 gcc/testsuite/gcc.target/riscv/constraint-cr.c create mode 100644 gcc/testsuite/gcc.target/riscv/modifier-N-fpr.c create mode 100644 gcc/testsuite/gcc.target/riscv/modifier-N-vr.c create mode 100644 gcc/testsuite/gcc.target/riscv/modifier-N.c