diff options
Diffstat (limited to 'gcc/tree-ssa.c')
-rw-r--r-- | gcc/tree-ssa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa.c b/gcc/tree-ssa.c index f1025b2..8c1aaf20 100644 --- a/gcc/tree-ssa.c +++ b/gcc/tree-ssa.c @@ -999,7 +999,7 @@ verify_ssa (bool check_modified_stmt) /* Now verify all the uses and make sure they agree with the definitions found in the previous pass. */ - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) { edge e; gimple phi; @@ -1456,7 +1456,7 @@ execute_update_addresses_taken (void) /* Collect into ADDRESSES_TAKEN all variables whose address is taken within the function body. */ - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) { for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi)) { @@ -1558,7 +1558,7 @@ execute_update_addresses_taken (void) variables and operands need to be rewritten to expose bare symbols. */ if (!bitmap_empty_p (suitable_for_renaming)) { - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi);) { gimple stmt = gsi_stmt (gsi); |