diff options
Diffstat (limited to 'gcc/lra-coalesce.c')
-rw-r--r-- | gcc/lra-coalesce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lra-coalesce.c b/gcc/lra-coalesce.c index 859e02f0dba..94a21f05aec 100644 --- a/gcc/lra-coalesce.c +++ b/gcc/lra-coalesce.c @@ -239,7 +239,7 @@ lra_coalesce (void) mv_num = 0; /* Collect moves. */ coalesced_moves = 0; - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) { FOR_BB_INSNS_SAFE (bb, insn, next) if (INSN_P (insn) @@ -297,7 +297,7 @@ lra_coalesce (void) } } bitmap_initialize (&used_pseudos_bitmap, ®_obstack); - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) { update_live_info (df_get_live_in (bb)); update_live_info (df_get_live_out (bb)); |