aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/profile-count.h6
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f3fb04f..4a29b02 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2018-01-23 Jan Hubicka <hubicka@ucw.cz>
+
+ * profile-count.h (profile_probability::very_unlikely,
+ profile_probability::unlikely, profile_probability::even): Set
+ precision to guessed.
+
2018-01-23 Richard Biener <rguenther@suse.de>
PR tree-optimization/83963
diff --git a/gcc/profile-count.h b/gcc/profile-count.h
index db274f4..69919ee 100644
--- a/gcc/profile-count.h
+++ b/gcc/profile-count.h
@@ -164,7 +164,7 @@ public:
{
/* Be consistent with PROB_VERY_UNLIKELY in predict.h. */
profile_probability r
- = profile_probability::always ().apply_scale (1, 2000);
+ = profile_probability::guessed_always ().apply_scale (1, 2000);
r.m_val--;
return r;
}
@@ -172,13 +172,13 @@ public:
{
/* Be consistent with PROB_VERY_LIKELY in predict.h. */
profile_probability r
- = profile_probability::always ().apply_scale (1, 5);
+ = profile_probability::guessed_always ().apply_scale (1, 5);
r.m_val--;
return r;
}
static profile_probability even ()
{
- return profile_probability::always ().apply_scale (1, 2);
+ return profile_probability::guessed_always ().apply_scale (1, 2);
}
static profile_probability very_likely ()
{