diff options
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index 4f9d7694222..d4d00a48424 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -576,7 +576,7 @@ alloc_aux_for_blocks (int size) { basic_block bb; - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) alloc_aux_for_block (bb, size); } } @@ -588,7 +588,7 @@ clear_aux_for_blocks (void) { basic_block bb; - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) bb->aux = NULL; } |