gcc/ChangeLog
2019-12-05 Sudakshina Das <sudi.das@arm.com>
* tree-vect-loop.c (vect_model_reduction_cost): Remove reduction_type
check from if condition.
From-SVN: r279012
+2019-12-05 Sudakshina Das <sudi.das@arm.com>
+
+ * tree-vect-loop.c (vect_model_reduction_cost): Remove reduction_type
+ check from if condition.
+
2019-12-05 Tobias Burnus <tobias@codesourcery.com>
* omp-low.c (lower_omp_target): For use_device_ptr/use_derice_addr
/* No extra instructions needed in the prologue. */
prologue_cost = 0;
- if (reduction_type == EXTRACT_LAST_REDUCTION || reduc_fn != IFN_LAST)
+ if (reduc_fn != IFN_LAST)
/* Count one reduction-like operation per vector. */
inside_cost = record_stmt_cost (cost_vec, ncopies, vec_to_scalar,
stmt_info, 0, vect_body);