diff mbox series

[1/1] Fix a typo in an AutoFDO error string

Message ID MWHPR21MB07982B3D423D33E941A8CE4591339@MWHPR21MB0798.namprd21.prod.outlook.com
State New
Headers show
Series [1/1] Fix a typo in an AutoFDO error string | expand

Commit Message

Eugene Rozenfeld June 12, 2021, 12:18 a.m. UTC
Trivial change, committed to trunk.

[PATCH 1/1] 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 mbox series

Patch

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