Fix a typo in an AutoFDO error string
authorEugene Rozenfeld <erozen@microsoft.com>
Fri, 11 Jun 2021 23:28:55 +0000 (16:28 -0700)
committerEugene Rozenfeld <erozen@microsoft.com>
Sat, 12 Jun 2021 00:07:48 +0000 (17:07 -0700)
gcc/ChangeLog:

* auto-profile.c (read_profile): fix a typo in an error string

gcc/auto-profile.c

index 2a6d9a1fc247a9199a688170302798c7a2906667..a4601243dc9ce29dc04dcaaedfc6f1fa26e1549e 100644 (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;
     }