public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: HaoChen Gui <guihaoc@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r11-8824] Fix execution failure of parity_1.f90 on P10 [PR100952]
Date: Mon,  2 Aug 2021 03:14:27 +0000 (GMT)	[thread overview]
Message-ID: <20210802031427.D7C6C3839C79@sourceware.org> (raw)

https://gcc.gnu.org/g:960135b264a7724cf9c56acb6d85fb2d842a36e2

commit r11-8824-g960135b264a7724cf9c56acb6d85fb2d842a36e2
Author: Haochen Gui <guihaoc@gcc.gnu.org>
Date:   Mon Aug 2 11:14:15 2021 +0800

    Fix execution failure of parity_1.f90 on P10 [PR100952]
    
    gcc/
            PR target/100952
            * config/rs6000/rs6000.md (cstore<mode>4): Fix wrong fall through.
    
    (cherry picked from commit 3382846558e02044598556e66e5ea1cb3115429d)

Diff:
---
 gcc/config/rs6000/rs6000.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md
index eefc74f3399..e9321f9b5b3 100644
--- a/gcc/config/rs6000/rs6000.md
+++ b/gcc/config/rs6000/rs6000.md
@@ -11810,7 +11810,10 @@
 {
   /* Everything is best done with setbc[r] if available.  */
   if (TARGET_POWER10 && TARGET_ISEL)
-    rs6000_emit_int_cmove (operands[0], operands[1], const1_rtx, const0_rtx);
+    {
+      rs6000_emit_int_cmove (operands[0], operands[1], const1_rtx, const0_rtx);
+      DONE;
+    }
 
   /* Expanding EQ and NE directly to some machine instructions does not help
      but does hurt combine.  So don't.  */


                 reply	other threads:[~2021-08-02  3:14 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=20210802031427.D7C6C3839C79@sourceware.org \
    --to=guihaoc@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).