aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@gcc.gnu.org>2017-06-19 09:50:13 +0000
committerJan Hubicka <hubicka@gcc.gnu.org>2017-06-19 09:50:13 +0000
commitb2c2a7e46863bbc16daada88e37b78022f0f7d12 (patch)
tree508011f52f36307c9bcc72c926a8a9a638ce5b04
parent4e9a497f07457d63c74962ee0d90c96bdd98f918 (diff)
downloadgcc-b2c2a7e46863bbc16daada88e37b78022f0f7d12.zip
gcc-b2c2a7e46863bbc16daada88e37b78022f0f7d12.tar.gz
gcc-b2c2a7e46863bbc16daada88e37b78022f0f7d12.tar.bz2
Fix typo
From-SVN: r249361
-rw-r--r--gcc/profile-count.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/profile-count.h b/gcc/profile-count.h
index cdd7906..42509c4 100644
--- a/gcc/profile-count.h
+++ b/gcc/profile-count.h
@@ -28,11 +28,11 @@ enum profile_count_quality {
not reflect the reality. */
count_guessed = 0,
/* Profile was determined by autofdo. */
- count_afdo = 2,
+ count_afdo = 1,
/* Profile was originally based on feedback but it was adjusted
by code duplicating optimization. It may not precisely reflect the
particular code path. */
- count_adjusted = 1,
+ count_adjusted = 2,
/* Profile was read from profile feedback or determined by accurate static
method. */
count_read = 3