2017-07-03 Richard Biener <rguenther@suse.de>
* tree-vect-loop.c (vect_create_epilog_for_reduction): Revert
back to using VIEW_CONVERT_EXPR.
From-SVN: r249902
+2017-07-03 Richard Biener <rguenther@suse.de>
+
+ * tree-vect-loop.c (vect_create_epilog_for_reduction): Revert
+ back to using VIEW_CONVERT_EXPR.
+
2017-07-03 Martin Liska <mliska@suse.cz>
* asan.c (asan_emit_stack_protection): Unpoison just red zones
/* Convert the reduced value back to the result type and set as the
result. */
gimple_seq stmts = NULL;
- new_temp = gimple_convert (&stmts, scalar_type, data_reduc);
+ new_temp = gimple_build (&stmts, VIEW_CONVERT_EXPR, scalar_type,
+ data_reduc);
gsi_insert_seq_before (&exit_gsi, stmts, GSI_SAME_STMT);
scalar_results.safe_push (new_temp);
}