+2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
+ Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/69328
+ * tree-vect-stmts.c (vect_is_simple_cond): Check compared
+ vectors have same number of elements.
+ (vectorizable_condition): Fix masked version recognition.
+
2016-01-20 Richard Biener <rguenther@suse.de>
PR tree-optimization/69345
+2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
+
+ PR tree-optimization/69328
+ * gcc.dg/pr69328.c: New test.
+
2016-01-20 Jeff Law <law@redhat.com>
PR target/25114
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O3" } */
+
+int a, b;
+void fn1() {
+ int c;
+ char *d;
+ for (; a; ++a) {
+ int e, f;
+ e = d[a];
+ if (!e && f || !f && e)
+ ++c;
+ }
+ if (c)
+ b = .499;
+}
&& TREE_CODE (rhs) != FIXED_CST)
return false;
+ if (vectype1 && vectype2
+ && TYPE_VECTOR_SUBPARTS (vectype1) != TYPE_VECTOR_SUBPARTS (vectype2))
+ return false;
+
*comp_vectype = vectype1 ? vectype1 : vectype2;
return true;
}
if (!vect_is_simple_use (else_clause, stmt_info->vinfo, &def_stmt, &dt))
return false;
- if (VECTOR_BOOLEAN_TYPE_P (comp_vectype))
- {
- vec_cmp_type = comp_vectype;
- masked = true;
- }
- else
- vec_cmp_type = build_same_sized_truth_vector_type (comp_vectype);
+ masked = !COMPARISON_CLASS_P (cond_expr);
+ vec_cmp_type = build_same_sized_truth_vector_type (comp_vectype);
+
if (vec_cmp_type == NULL_TREE)
return false;