This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from e510c3be13a x86: Update model values for Alderlake, Rocketlake and Raptorlake. new 4d1e97f5838 RISC-V: Allow rounding mode control for RVV floating-point add new e714af12e3b RISC-V: Support vfadd static rounding mode by mode switching
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: gcc/config/riscv/riscv-protos.h | 2 + gcc/config/riscv/riscv-vector-builtins-bases.cc | 25 ++++++++ gcc/config/riscv/riscv-vector-builtins-bases.h | 1 + .../riscv/riscv-vector-builtins-functions.def | 2 + gcc/config/riscv/riscv-vector-builtins-shapes.cc | 68 ++++++++++++++++++++++ gcc/config/riscv/riscv-vector-builtins-shapes.h | 1 + gcc/config/riscv/riscv-vector-builtins.cc | 41 +++++++++++++ gcc/config/riscv/riscv-vector-builtins.h | 4 ++ gcc/config/riscv/riscv.cc | 52 +++++++++++++---- gcc/config/riscv/riscv.h | 4 +- gcc/config/riscv/riscv.md | 4 +- gcc/config/riscv/vector-iterators.md | 2 + gcc/config/riscv/vector.md | 53 +++++++++++++++++ .../riscv/rvv/base/float-point-frm-error.c | 15 +++++ .../riscv/rvv/base/float-point-frm-insert-1.c | 31 ++++++++++ .../riscv/rvv/base/float-point-frm-insert-2.c | 14 +++++ .../riscv/rvv/base/float-point-frm-insert-3.c | 14 +++++ .../riscv/rvv/base/float-point-frm-insert-4.c | 23 ++++++++ .../riscv/rvv/base/float-point-frm-insert-5.c | 23 ++++++++ .../gcc.target/riscv/rvv/base/float-point-frm.c | 30 ++++++++++ 20 files changed, 395 insertions(+), 14 deletions(-) create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/base/float-point-frm-error.c create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/base/float-point-frm-insert-1.c create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/base/float-point-frm-insert-2.c create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/base/float-point-frm-insert-3.c create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/base/float-point-frm-insert-4.c create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/base/float-point-frm-insert-5.c create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/base/float-point-frm.c