public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-8824] Fix execution failure of parity_1.f90 on P10 [PR100952]
@ 2021-08-02  3:14 HaoChen Gui
  0 siblings, 0 replies; only message in thread
From: HaoChen Gui @ 2021-08-02  3:14 UTC (permalink / raw)
  To: gcc-cvs

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.  */


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-08-02  3:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-02  3:14 [gcc r11-8824] Fix execution failure of parity_1.f90 on P10 [PR100952] HaoChen Gui

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).