2019-12-03 Richard Biener <rguenther@suse.de>
PR tree-optimization/92758
* tree-ssa-forwprop.c (simplify_vector_constructor): Restore
operation on uniform vectors.
From-SVN: r278938
+2019-12-03 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/92758
+ * tree-ssa-forwprop.c (simplify_vector_constructor): Restore
+ operation on uniform vectors.
+
2019-12-03 Richard Biener <rguenther@suse.de>
PR tree-optimization/92645
gcc_checking_assert (TREE_CODE (op) == CONSTRUCTOR
&& TREE_CODE (type) == VECTOR_TYPE);
- if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&nelts)
- || uniform_vector_p (op))
+ if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&nelts))
return false;
elem_type = TREE_TYPE (type);
elem_size = TREE_INT_CST_LOW (TYPE_SIZE (elem_type));