public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/meissner/heads/dmf004)] Fix lxvl and stxvl wrong conditional branch.
@ 2022-11-17  5:14 Michael Meissner
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Meissner @ 2022-11-17  5:14 UTC (permalink / raw)
  To: gcc-cvs

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

commit c6cdca361421be4846e904208e161a110421ab95
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Thu Nov 17 00:14:06 2022 -0500

    Fix lxvl and stxvl wrong conditional branch.
    
    2022-11-16   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/rs6000-string.cc (expand_block_move_variable): Fix wrong
            conditional branch.

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

diff --git a/gcc/config/rs6000/rs6000-string.cc b/gcc/config/rs6000/rs6000-string.cc
index 216c0c1cc93..ee17ddb87e1 100644
--- a/gcc/config/rs6000/rs6000-string.cc
+++ b/gcc/config/rs6000/rs6000-string.cc
@@ -2844,7 +2844,7 @@ expand_block_move_variable (rtx operands[], bool might_overlap)
 			      gen_rtx_COMPARE (CCmode, bytes_rtx,
 					       const0_rtx)));
 
-      do_ifelse (CCmode, GT, NULL_RTX, NULL_RTX, vect_cr, join_label,
+      do_ifelse (CCmode, LE, NULL_RTX, NULL_RTX, vect_cr, join_label,
 		 profile_probability::likely ());
 
       rtx ptr_adjust = GEN_INT (vect_size_int);

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gcc(refs/users/meissner/heads/dmf004)] Fix lxvl and stxvl wrong conditional branch.
@ 2022-11-17 21:55 Michael Meissner
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Meissner @ 2022-11-17 21:55 UTC (permalink / raw)
  To: gcc-cvs

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

commit e9c3f7a87eab783efd9356b0214aadcd7fa00d2e
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Thu Nov 17 00:14:06 2022 -0500

    Fix lxvl and stxvl wrong conditional branch.
    
    2022-11-16   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/rs6000-string.cc (expand_block_move_variable): Fix wrong
            conditional branch.

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

diff --git a/gcc/config/rs6000/rs6000-string.cc b/gcc/config/rs6000/rs6000-string.cc
index 216c0c1cc93..ee17ddb87e1 100644
--- a/gcc/config/rs6000/rs6000-string.cc
+++ b/gcc/config/rs6000/rs6000-string.cc
@@ -2844,7 +2844,7 @@ expand_block_move_variable (rtx operands[], bool might_overlap)
 			      gen_rtx_COMPARE (CCmode, bytes_rtx,
 					       const0_rtx)));
 
-      do_ifelse (CCmode, GT, NULL_RTX, NULL_RTX, vect_cr, join_label,
+      do_ifelse (CCmode, LE, NULL_RTX, NULL_RTX, vect_cr, join_label,
 		 profile_probability::likely ());
 
       rtx ptr_adjust = GEN_INT (vect_size_int);

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-17 21:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-17  5:14 [gcc(refs/users/meissner/heads/dmf004)] Fix lxvl and stxvl wrong conditional branch Michael Meissner
2022-11-17 21:55 Michael Meissner

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