public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Pan Li <panli@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r14-3799] RISC-V: Suppress bogus warning for VLS types
Date: Fri,  8 Sep 2023 08:31:42 +0000 (GMT)	[thread overview]
Message-ID: <20230908083142.0D6D73858D38@sourceware.org> (raw)

https://gcc.gnu.org/g:a0e042d61dadc6bdcbeaa3b712b7a83415a12547

commit r14-3799-ga0e042d61dadc6bdcbeaa3b712b7a83415a12547
Author: Juzhe-Zhong <juzhe.zhong@rivai.ai>
Date:   Fri Sep 8 16:20:27 2023 +0800

    RISC-V: Suppress bogus warning for VLS types
    
    This patch fixes over 100+ bogus FAILs due to experimental vector ABI warning.
    
    gcc/ChangeLog:
    
            * config/riscv/riscv.cc (riscv_pass_in_vector_p): Only allow RVV type.

Diff:
---
 gcc/config/riscv/riscv.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc
index 7a0f9f6465df..1d7332ff32be 100644
--- a/gcc/config/riscv/riscv.cc
+++ b/gcc/config/riscv/riscv.cc
@@ -4414,7 +4414,7 @@ riscv_pass_in_vector_p (const_tree type)
 {
   static int warned = 0;
 
-  if (type && riscv_v_ext_mode_p (TYPE_MODE (type)) && !warned)
+  if (type && riscv_vector::lookup_vector_type_attribute (type) && !warned)
     {
       warning (OPT_Wpsabi,
 	       "ABI for the vector type is currently in experimental stage and "

                 reply	other threads:[~2023-09-08  8:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230908083142.0D6D73858D38@sourceware.org \
    --to=panli@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).