From b2c2a7e46863bbc16daada88e37b78022f0f7d12 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Mon, 19 Jun 2017 09:50:13 +0000 Subject: [PATCH] Fix typo From-SVN: r249361 --- gcc/profile-count.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/profile-count.h b/gcc/profile-count.h index cdd79060ee2..42509c49f98 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 -- 2.30.2