tree-vect-transform.c (vectorizable_call): Call mark_symbols_for_renaming after vect_finish_stmt_generation.

* tree-vect-transform.c (vectorizable_call): Call
	mark_symbols_for_renaming after vect_finish_stmt_generation.

From-SVN: r152174
This commit is contained in:
Jakub Jelinek 2009-09-25 16:28:42 +02:00 committed by Jakub Jelinek
parent 5b045b2bfc
commit f011dd7988
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-09-25 Jakub Jelinek <jakub@redhat.com>
* tree-vect-transform.c (vectorizable_call): Call
mark_symbols_for_renaming after vect_finish_stmt_generation.
2009-09-25 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/rs6000.md (load_toc_v4_PIC_3c): Correct POWER

View File

@ -3386,6 +3386,7 @@ vectorizable_call (gimple stmt, gimple_stmt_iterator *gsi, gimple *vec_stmt)
gimple_call_set_lhs (new_stmt, new_temp);
vect_finish_stmt_generation (stmt, new_stmt, gsi);
mark_symbols_for_renaming (new_stmt);
if (j == 0)
STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
@ -3433,6 +3434,7 @@ vectorizable_call (gimple stmt, gimple_stmt_iterator *gsi, gimple *vec_stmt)
gimple_call_set_lhs (new_stmt, new_temp);
vect_finish_stmt_generation (stmt, new_stmt, gsi);
mark_symbols_for_renaming (new_stmt);
if (j == 0)
STMT_VINFO_VEC_STMT (stmt_info) = new_stmt;