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 df85906..058901e 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -2020,7 +2020,7 @@ counts_to_freqs (void) gcov_type count_max, true_count_max = 0; basic_block bb; - FOR_EACH_BB (bb) + FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb) true_count_max = MAX (bb->count, true_count_max); count_max = MAX (true_count_max, 1); |