From: bonzini Date: Mon, 11 Apr 2005 12:11:46 +0000 (+0000) Subject: 2005-04-11 Paolo Bonzini X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7776b320ced4023d5b854b9087d1b5b7be2628c3;p=thirdparty%2Fgcc.git 2005-04-11 Paolo Bonzini * tree-complex.c (expand_vector_operations): Call update_stmt_if_modified. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97966 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index db960f157f76..de4e0f28da84 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-04-11 Paolo Bonzini + + * tree-complex.c (expand_vector_operations): Call + update_stmt_if_modified. + 2005-04-11 Paolo Bonzini * tree-vect-analyze (vect_determine_vectorization_factor): diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index 74e746578cd6..18582c1b20ba 100644 --- a/gcc/tree-complex.c +++ b/gcc/tree-complex.c @@ -986,7 +986,10 @@ expand_vector_operations (void) FOR_EACH_BB (bb) { for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi)) - expand_vector_operations_1 (&bsi); + { + expand_vector_operations_1 (&bsi); + update_stmt_if_modified (bsi_stmt (bsi)); + } } }