---
 gcc/tree-vect-stmts.cc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gcc/tree-vect-stmts.cc b/gcc/tree-vect-stmts.cc
index 203c21b460a..10d05a87830 100644
--- a/gcc/tree-vect-stmts.cc
+++ b/gcc/tree-vect-stmts.cc
@@ -12564,7 +12564,7 @@ vectorizable_early_exit (vec_info *vinfo, stmt_vec_info 
stmt_info,
   /* Early break gcond kind SLP trees can be root only and have no children,
      for instance in the case where the argument is an external.  If that's
      the case there is no operand to analyse use of.  */
-  if ((!slp_node || !SLP_TREE_CHILDREN (slp_node).is_empty ())
+  if ((!1 || !SLP_TREE_CHILDREN (slp_node).is_empty ())
       && !vect_is_simple_use (vinfo, stmt_info, slp_node, 0, &op0, &slp_op0, 
&dt0,
                              &vectype))
     {
@@ -12579,7 +12579,7 @@ vectorizable_early_exit (vec_info *vinfo, stmt_vec_info 
stmt_info,
      want to use the type of the direct children which since the gcond is root
      will be the current node, rather than a child node as vect_is_simple_use
      assumes.  */
-  if (slp_node)
+  if (1)
     vectype = SLP_TREE_VECTYPE (slp_node);
 
   if (!vectype)
@@ -12588,7 +12588,7 @@ vectorizable_early_exit (vec_info *vinfo, stmt_vec_info 
stmt_info,
   machine_mode mode = TYPE_MODE (vectype);
   int ncopies, vec_num;
 
-  if (slp_node)
+  if (1)
     {
       ncopies = 1;
       vec_num = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node);
@@ -12683,7 +12683,7 @@ vectorizable_early_exit (vec_info *vinfo, stmt_vec_info 
stmt_info,
      vectorized.  It's not very clean to do this here, But the masking code 
below is
      complex and this keeps it all in one place to ease fixes and backports.  
Once we
      drop the non-SLP loop vect or split vectorizable_* this can be 
simplified.  */
-  if (!slp_node)
+  if (!1)
     {
       if (!vectorizable_comparison_1 (vinfo, vectype, stmt_info, code, gsi,
                                      vec_stmt, slp_node, cost_vec))
@@ -12696,7 +12696,7 @@ vectorizable_early_exit (vec_info *vinfo, stmt_vec_info 
stmt_info,
 
   auto_vec<tree> stmts;
 
-  if (slp_node)
+  if (1)
     stmts.safe_splice (SLP_TREE_VEC_DEFS (slp_node));
   else
     {
@@ -12793,12 +12793,12 @@ vectorizable_early_exit (vec_info *vinfo, 
stmt_vec_info stmt_info,
   gimple_cond_set_condition (cond_stmt, NE_EXPR, new_temp, cst);
   update_stmt (orig_stmt);
 
-  if (slp_node)
+  if (1)
     SLP_TREE_VEC_DEFS (slp_node).truncate (0);
    else
     STMT_VINFO_VEC_STMTS (stmt_info).truncate (0);
 
-  if (!slp_node)
+  if (!1)
     *vec_stmt = orig_stmt;
 
   return true;
-- 
2.43.0

Reply via email to