diff options
Diffstat (limited to 'gcc/web.c')
-rw-r--r-- | gcc/web.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/web.c b/gcc/web.c index 8e8c4658fd2..d281f45b230 100644 --- a/gcc/web.c +++ b/gcc/web.c @@ -351,7 +351,7 @@ web_main (void) df_set_flags (DF_DEFER_INSN_RESCAN); /* Assign ids to the uses. */ - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) FOR_BB_INSNS (bb, insn) { unsigned int uid = INSN_UID (insn); @@ -379,7 +379,7 @@ web_main (void) use_entry = XCNEWVEC (struct web_entry, uses_num); /* Produce the web. */ - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) FOR_BB_INSNS (bb, insn) { unsigned int uid = INSN_UID (insn); @@ -404,7 +404,7 @@ web_main (void) /* Update the instruction stream, allocating new registers for split pseudos in progress. */ - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) FOR_BB_INSNS (bb, insn) { unsigned int uid = INSN_UID (insn); |