aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r--gcc/cgraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c
index aa54e95..5497235 100644
--- a/gcc/cgraph.c
+++ b/gcc/cgraph.c
@@ -2707,7 +2707,7 @@ cgraph_edge::maybe_hot_p (void)
if (count.apply_scale (2, 1) < where->count.apply_scale (3, 1))
return false;
}
- else if (count.apply_scale (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION), 1)
+ else if (count.apply_scale (param_hot_bb_frequency_fraction , 1)
< where->count)
return false;
return true;