2016-07-15 Richard Biener <rguenther@suse.de>
* config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
vec_construct cost.
From-SVN: r238364
+2016-07-15 Richard Biener <rguenther@suse.de>
+
+ * config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
+ vec_construct cost.
+
2016-07-14 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/71872
ix86_builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost,
tree vectype, int)
{
- unsigned elements;
-
switch (type_of_cost)
{
case scalar_stmt:
return ix86_cost->vec_stmt_cost;
case vec_construct:
- elements = TYPE_VECTOR_SUBPARTS (vectype);
- return ix86_cost->vec_stmt_cost * (elements / 2 + 1);
+ return ix86_cost->vec_stmt_cost * (TYPE_VECTOR_SUBPARTS (vectype) - 1);
default:
gcc_unreachable ();