mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 19:03:59 +08:00
predict: Fix comment typo
I've noticed a typo in a comment. 2024-03-28 Jakub Jelinek <jakub@redhat.com> * predict.cc (estimate_bb_frequencies): Fix comment typo, scalling -> scaling.
This commit is contained in:
parent
d5a3b4afcd
commit
44ab31419c
@ -4035,7 +4035,7 @@ estimate_bb_frequencies ()
|
||||
|
||||
/* Scaling frequencies up to maximal profile count may result in
|
||||
frequent overflows especially when inlining loops.
|
||||
Small scalling results in unnecesary precision loss. Stay in
|
||||
Small scaling results in unnecesary precision loss. Stay in
|
||||
the half of the (exponential) range. */
|
||||
freq_max = (sreal (1) << (profile_count::n_bits / 2)) / freq_max;
|
||||
if (freq_max < 16)
|
||||
|
Loading…
Reference in New Issue
Block a user