diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2005-04-11 12:11:46 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2005-04-11 12:11:46 +0000 |
commit | 84971f0156fab4c11ad99d9729f3259465191bed (patch) | |
tree | 928c6af50c424e38b08d6b0d74fc404aec3269b7 /gcc/tree-complex.c | |
parent | 57d1677d8dc591fd3635fadb06a83753d65f23c1 (diff) | |
download | gcc-84971f0156fab4c11ad99d9729f3259465191bed.zip gcc-84971f0156fab4c11ad99d9729f3259465191bed.tar.gz gcc-84971f0156fab4c11ad99d9729f3259465191bed.tar.bz2 |
tree-complex.c (expand_vector_operations): Call update_stmt_if_modified.
2005-04-11 Paolo Bonzini <bonzini@gnu.org>
* tree-complex.c (expand_vector_operations): Call
update_stmt_if_modified.
From-SVN: r97966
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 74e7465..18582c1 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)); + } } } |