diff options
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 234e5b6..cf72c03 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -2613,7 +2613,7 @@ try_optimize_cfg (int mode) crossjumps_occured = false; - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) update_forwarder_flag (bb); if (! targetm.cannot_modify_jumps_p ()) @@ -2955,7 +2955,7 @@ delete_dead_jumptables (void) /* A dead jump table does not belong to any basic block. Scan insns between two adjacent basic blocks. */ - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) { rtx insn, next; |