diff options
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 56bcd804cfd..a73bd411926 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -498,7 +498,7 @@ add_scope_conflicts (void) We then do a mostly classical bitmap liveness algorithm. */ - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) bb->aux = BITMAP_ALLOC (&stack_var_bitmap_obstack); rpo = XNEWVEC (int, last_basic_block_for_fn (cfun)); @@ -525,7 +525,7 @@ add_scope_conflicts (void) free (rpo); BITMAP_FREE (work); - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) BITMAP_FREE (bb->aux); } |