public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-5501] i386: Fix split condition of *<insn>qi_ext<mode>_1_slp patterns
@ 2023-11-15 15:45 Uros Bizjak
  0 siblings, 0 replies; only message in thread
From: Uros Bizjak @ 2023-11-15 15:45 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:93d85b80605aa787d2cc103e7a70d10487c01bea

commit r14-5501-g93d85b80605aa787d2cc103e7a70d10487c01bea
Author: Uros Bizjak <ubizjak@gmail.com>
Date:   Wed Nov 15 16:45:21 2023 +0100

    i386: Fix split condition of *<insn>qi_ext<mode>_1_slp patterns
    
    gcc/ChangeLog:
    
            * config/i386/i386.md (*addqi_ext<mode>_1_slp):
            Add "&& " before "reload_completed" in split condition.
            (*subqi_ext<mode>_1_slp): Ditto.
            (*<any_logic:code>qi_ext<mode>_1_slp): Ditto.

Diff:
---
 gcc/config/i386/i386.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index 29ec9425200..32535621db4 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -6630,7 +6630,7 @@
   "@
    add{b}\t{%h2, %0|%0, %h2}
    #"
-  "reload_completed
+  "&& reload_completed
    && !rtx_equal_p (operands[0], operands[1])"
   [(set (strict_low_part (match_dup 0)) (match_dup 1))
    (parallel
@@ -7673,7 +7673,7 @@
   "@
    sub{b}\t{%h2, %0|%0, %h2}
    #"
-  "reload_completed
+  "&& reload_completed
    && !rtx_equal_p (operands[0], operands[1])"
   [(set (strict_low_part (match_dup 0)) (match_dup 1))
    (parallel
@@ -11498,7 +11498,7 @@
   "@
    <logic>{b}\t{%h2, %0|%0, %h2}
    #"
-  "reload_completed
+  "&& reload_completed
    && !rtx_equal_p (operands[0], operands[1])"
   [(set (strict_low_part (match_dup 0)) (match_dup 1))
    (parallel

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

only message in thread, other threads:[~2023-11-15 15:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-15 15:45 [gcc r14-5501] i386: Fix split condition of *<insn>qi_ext<mode>_1_slp patterns Uros Bizjak

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