aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-complex.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree-complex.c')
-rw-r--r--gcc/tree-complex.c5
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));
+ }
}
}