diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-11 12:11:46 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-11 12:11:46 +0000 |
commit | 7776b320ced4023d5b854b9087d1b5b7be2628c3 (patch) | |
tree | 928c6af50c424e38b08d6b0d74fc404aec3269b7 /gcc/tree-complex.c | |
parent | 9ca8d40949d5e0a2b099fcb01caf59004be4c0fc (diff) | |
download | gcc-7776b320ced4023d5b854b9087d1b5b7be2628c3.tar.gz |
2005-04-11 Paolo Bonzini <bonzini@gnu.org>
* 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
Diffstat (limited to 'gcc/tree-complex.c')
-rw-r--r-- | gcc/tree-complex.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index 74e746578cd..18582c1b20b 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)); + } } } |