Fix a typo in an AutoFDO error string

gcc/ChangeLog:

	* auto-profile.c (read_profile): fix a typo in an error string
This commit is contained in:
Eugene Rozenfeld 2021-06-11 16:28:55 -07:00
parent 2c4115ba9c
commit 23691ddd3a

View file

@ -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;
}