diff options
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index 78efb72..a5ad34f 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -2757,7 +2757,7 @@ estimate_loops (void) estimate_loops_at_level (current_loops->tree_root->inner); /* Now propagate the frequencies through all the blocks. */ - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) { bitmap_set_bit (tovisit, bb->index); } |