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

diff --git a/gcc/tree-vect-stmts.cc b/gcc/tree-vect-stmts.cc
index 9bed36283cf..a1847dc3f0d 100644
--- a/gcc/tree-vect-stmts.cc
+++ b/gcc/tree-vect-stmts.cc
@@ -11812,7 +11812,7 @@ vectorizable_condition (vec_info *vinfo,
     = STMT_VINFO_REDUC_DEF (vect_orig_stmt (stmt_info)) != NULL;
   if (for_reduction)
     {
-      if (slp_node && SLP_TREE_LANES (slp_node) > 1)
+      if (1 && SLP_TREE_LANES (slp_node) > 1)
        return false;
       reduc_info = info_for_reduction (vinfo, stmt_info);
       reduction_type = STMT_VINFO_REDUC_TYPE (reduc_info);
@@ -11829,7 +11829,7 @@ vectorizable_condition (vec_info *vinfo,
   tree vectype = STMT_VINFO_VECTYPE (stmt_info);
   tree vectype1 = NULL_TREE, vectype2 = NULL_TREE;
 
-  if (slp_node)
+  if (1)
     {
       ncopies = 1;
       vec_num = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node);
@@ -11905,7 +11905,7 @@ vectorizable_condition (vec_info *vinfo,
        }
       /* ???  The vectorized operand query below doesn't allow swapping
         this way for SLP.  */
-      if (slp_node)
+      if (1)
        return false;
       std::swap (then_clause, else_clause);
     }
@@ -11992,7 +11992,7 @@ vectorizable_condition (vec_info *vinfo,
                       || !expand_vec_cond_expr_p (vectype, vec_cmp_type))))
        return false;
 
-      if (slp_node
+      if (1
          && (!vect_maybe_update_slp_op_vectype
                 (SLP_TREE_CHILDREN (slp_node)[0], comp_vectype)
              || (op_adjust == 1
@@ -12293,13 +12293,13 @@ vectorizable_condition (vec_info *vinfo,
                                          vec_then_clause, vec_else_clause);
          vect_finish_stmt_generation (vinfo, stmt_info, new_stmt, gsi);
        }
-      if (slp_node)
+      if (1)
        slp_node->push_vec_def (new_stmt);
       else
        STMT_VINFO_VEC_STMTS (stmt_info).safe_push (new_stmt);
     }
 
-  if (!slp_node)
+  if (!1)
     *vec_stmt = STMT_VINFO_VEC_STMTS (stmt_info)[0];
 
   vec_oprnds0.release ();
-- 
2.43.0

Reply via email to