]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
split-path: CALL_EXPR can't show up in gimple_assign
authorAndrew Pinski <quic_apinski@quicinc.com>
Tue, 28 Jan 2025 20:20:25 +0000 (12:20 -0800)
committerAndrew Pinski <quic_apinski@quicinc.com>
Wed, 29 Jan 2025 13:34:53 +0000 (05:34 -0800)
While working on split path, I noticed that poor_ifcvt_candidate_code
would check for CALL_EXPR but that can't show up in gimple_assign
so this removes that check.

This could be a very very small compile time improvement.

Bootstrapped and tested on x86_64-linux-gnu.

gcc/ChangeLog:

* gimple-ssa-split-paths.cc (poor_ifcvt_candidate_code): Remove CALL_EXPR handling.

Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
gcc/gimple-ssa-split-paths.cc

index 018e59f98cb71e8690ea2f8402cdeba6ce700dbf..7c5bc1d842c01d59eaf36647eecb4fd09441b0c5 100644 (file)
@@ -138,8 +138,7 @@ poor_ifcvt_candidate_code (enum tree_code code)
   return (code == MIN_EXPR
          || code == MAX_EXPR
          || code == ABS_EXPR
-         || code == COND_EXPR
-         || code == CALL_EXPR);
+         || code == COND_EXPR);
 }
 
 /* Return TRUE if PRED of BB is an poor ifcvt candidate. */