public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Andrew Pinski <pinskia@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r13-2180] Fix PR 106690: enable effective_target_bswap for RISCV targets with ZBB enabled by default
Date: Wed, 24 Aug 2022 18:31:30 +0000 (GMT)	[thread overview]
Message-ID: <20220824183130.61B0D385381B@sourceware.org> (raw)

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

commit r13-2180-gdec5faa2b2f0d311daa6defd4b4f3c1965748ddf
Author: Andrew Pinski <apinski@marvell.com>
Date:   Fri Aug 19 22:09:30 2022 +0000

    Fix PR 106690: enable effective_target_bswap for RISCV targets with ZBB enabled by default
    
    While looking for testcases to quickly test, I Noticed that
    check_effective_target_bswap was not enabled for riscv when
    ZBB is enabled. This patch checks if ZBB is enabled when
    targeting RISCV* for bswap.
    
    OK? Ran the testsuite for riscv32-linux-gnu both with and without ZBB enabled.
    
    PR testsuite/106690
    gcc/testsuite/ChangeLog:
    
            * lib/target-supports.exp (check_effective_target_bswap):
            Return true if riscv and ZBB ISA extension is enabled.

Diff:
---
 gcc/testsuite/lib/target-supports.exp | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index 04a2a8e8659..0f1e1af31e9 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -8646,6 +8646,13 @@ proc check_effective_target_bswap { } {
 	     || [istarget powerpc*-*-*]
 	     || [istarget rs6000-*-*]
 	     || [istarget s390*-*-*]
+	     || ([istarget riscv*-*-*]
+	         && [check_no_compiler_messages_nocache riscv_zbb object {
+		     #if __riscv_zbb  <= 0
+		     #error ZBB is not enabled
+		     #endif
+		     int i;
+		 } ""])
 	     || ([istarget arm*-*-*]
 		 && [check_no_compiler_messages_nocache arm_v6_or_later object {
 		     #if __ARM_ARCH < 6

                 reply	other threads:[~2022-08-24 18: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=20220824183130.61B0D385381B@sourceware.org \
    --to=pinskia@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).