2019-12-02 Richard Biener <rguenther@suse.de>
PR tree-optimization/92742
* tree-vect-loop.c (vect_fixup_reduc_chain): Do not
touch the def-type but verify it is consistent with the
original stmts.
* gcc.dg/torture/pr92742.c: New testcase.
From-SVN: r278896
+2019-12-02 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/92742
+ * tree-vect-loop.c (vect_fixup_reduc_chain): Do not
+ touch the def-type but verify it is consistent with the
+ original stmts.
+
2019-12-02 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/92712
+2019-12-02 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/92742
+ * gcc.dg/torture/pr92742.c: New testcase.
+
2019-12-02 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/92712
--- /dev/null
+/* { dg-do compile } */
+/* { dg-additional-options "-ftree-vectorize" } */
+
+unsigned int qw;
+
+int
+rs (int iq, int wg)
+{
+ for (qw = 0; qw < 2; ++qw)
+ {
+ }
+
+ while (iq < 1)
+ {
+ wg *= qw * 2;
+ ++iq;
+ }
+
+ return wg;
+}
do
{
stmtp = STMT_VINFO_RELATED_STMT (stmt_info);
+ gcc_checking_assert (STMT_VINFO_DEF_TYPE (stmtp)
+ == STMT_VINFO_DEF_TYPE (stmt_info));
REDUC_GROUP_FIRST_ELEMENT (stmtp) = firstp;
stmt_info = REDUC_GROUP_NEXT_ELEMENT (stmt_info);
if (stmt_info)
= STMT_VINFO_RELATED_STMT (stmt_info);
}
while (stmt_info);
- STMT_VINFO_DEF_TYPE (stmtp) = vect_reduction_def;
}
/* Fixup scalar cycles that now have their stmts detected as patterns. */