From 23691ddd3aa3ffe55892b2bff54f9a15a89de2b4 Mon Sep 17 00:00:00 2001 From: Eugene Rozenfeld Date: Fri, 11 Jun 2021 16:28:55 -0700 Subject: [PATCH] Fix a typo in an AutoFDO error string gcc/ChangeLog: * auto-profile.c (read_profile): fix a typo in an error string --- gcc/auto-profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/auto-profile.c b/gcc/auto-profile.c index 2a6d9a1fc24..a4601243dc9 100644 --- a/gcc/auto-profile.c +++ b/gcc/auto-profile.c @@ -939,7 +939,7 @@ read_profile (void) unsigned version = gcov_read_unsigned (); if (version != AUTO_PROFILE_VERSION) { - error ("AutoFDO profile version %u does match %u", + error ("AutoFDO profile version %u does not match %u", version, AUTO_PROFILE_VERSION); return; }