diff options
author | Pan Li <pan2.li@intel.com> | 2024-01-12 10:49:55 +0800 |
---|---|---|
committer | Pan Li <pan2.li@intel.com> | 2024-01-12 10:59:25 +0800 |
commit | d79629b316f48c45c0a38d10b8fef1a84beceb46 (patch) | |
tree | 14bcec96cb0aa76106a9fc78d4c8343ae46f295f | |
parent | 72609f5591b751b34fca3730acaf274c0ba32dab (diff) | |
download | gcc-d79629b316f48c45c0a38d10b8fef1a84beceb46.zip gcc-d79629b316f48c45c0a38d10b8fef1a84beceb46.tar.gz gcc-d79629b316f48c45c0a38d10b8fef1a84beceb46.tar.bz2 |
RISC-V: Update the comments of riscv_v_ext_mode_p [NFC]
gcc/ChangeLog:
* config/riscv/riscv.cc (riscv_v_ext_mode_p): Update the
comments of predicate func riscv_v_ext_mode_p.
Signed-off-by: Pan Li <pan2.li@intel.com>
-rw-r--r-- | gcc/config/riscv/riscv.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc index df9799d..f829014 100644 --- a/gcc/config/riscv/riscv.cc +++ b/gcc/config/riscv/riscv.cc @@ -1361,7 +1361,10 @@ riscv_v_ext_vls_mode_p (machine_mode mode) return false; } -/* Return true if it is either RVV vector mode or RVV tuple mode. */ +/* Return true if it is either of below modes. + 1. RVV vector mode. + 2. RVV tuple mode. + 3. RVV vls mode. */ static bool riscv_v_ext_mode_p (machine_mode mode) |