From: Eugene Rozenfeld Date: Fri, 11 Jun 2021 23:28:55 +0000 (-0700) Subject: Fix a typo in an AutoFDO error string X-Git-Tag: basepoints/gcc-13~6912 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23691ddd3aa3ffe55892b2bff54f9a15a89de2b4;p=thirdparty%2Fgcc.git Fix a typo in an AutoFDO error string gcc/ChangeLog: * auto-profile.c (read_profile): fix a typo in an error string --- diff --git a/gcc/auto-profile.c b/gcc/auto-profile.c index 2a6d9a1fc247..a4601243dc9c 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; }