]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ifcvt: Allow non-comparisons against 0 in noce_try_cond_zero_arith
authorAndrew Pinski <andrew.pinski@oss.qualcomm.com>
Sun, 28 Dec 2025 20:50:12 +0000 (12:50 -0800)
committerAndrew Pinski <andrew.pinski@oss.qualcomm.com>
Mon, 29 Dec 2025 18:27:41 +0000 (10:27 -0800)
Like r16-6332-g2a84a753afcf37 but instead of just allowing any comparisons
against 0, this allows all comparisons. I mentioned this in
https://gcc.gnu.org/pipermail/gcc-patches/2025-December/704463.html.

gcc/ChangeLog:

* ifcvt.cc (noce_try_cond_zero_arith): Remove restriction on comparison
against 0.

Signed-off-by: Andrew Pinski <andrew.pinski@oss.qualcomm.com>
gcc/ifcvt.cc

index 2b8f68a9b415531c1e9bb3a75250198b8866f119..49e09f3d384b4043967778cd12f77034c801c6ab 100644 (file)
@@ -3157,9 +3157,6 @@ noce_try_cond_zero_arith (struct noce_if_info *if_info)
   if (!noce_simple_bbs (if_info))
     return false;
 
-  if (!REG_P (XEXP (cond, 0)) || !rtx_equal_p (XEXP (cond, 1), const0_rtx))
-    return false;
-
   a = copy_rtx (if_info->a);
   b = copy_rtx (if_info->b);