]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
RISC-V: Tweak the wording for the sorry message
authorKito Cheng <kito.cheng@sifive.com>
Fri, 19 Jan 2024 02:30:16 +0000 (10:30 +0800)
committerKito Cheng <kito.cheng@sifive.com>
Fri, 19 Jan 2024 02:40:53 +0000 (10:40 +0800)
Use "does not" rather than "cannot", because it's implementation issue.

gcc/ChangeLog:

* config/riscv/riscv.cc (riscv_override_options_internal): Tweak
sorry message.

gcc/config/riscv/riscv.cc

index f1d5129397fba49f21ae566fba85df7a71e7ed39..dd6e68a08c223f5e298b40c8c2a277fb761d1806 100644 (file)
@@ -8798,13 +8798,13 @@ riscv_override_options_internal (struct gcc_options *opts)
 
      We can only allow TARGET_MIN_VLEN * 8 (LMUL) < 65535.  */
   if (TARGET_MIN_VLEN_OPTS (opts) > 4096)
-    sorry ("Current RISC-V GCC cannot support VLEN greater than 4096bit for "
+    sorry ("Current RISC-V GCC does not support VLEN greater than 4096bit for "
           "'V' Extension");
 
   /* FIXME: We don't support RVV in big-endian for now, we may enable RVV with
      big-endian after finishing full coverage testing.  */
   if (TARGET_VECTOR && TARGET_BIG_ENDIAN)
-    sorry ("Current RISC-V GCC cannot support RVV in big-endian mode");
+    sorry ("Current RISC-V GCC does not support RVV in big-endian mode");
 
   /* Convert -march to a chunks count.  */
   riscv_vector_chunks = riscv_convert_vector_bits (opts);