diff options
author | Eugene Rozenfeld <erozen@microsoft.com> | 2021-06-11 16:28:55 -0700 |
---|---|---|
committer | Eugene Rozenfeld <erozen@microsoft.com> | 2021-06-11 17:07:48 -0700 |
commit | 23691ddd3aa3ffe55892b2bff54f9a15a89de2b4 (patch) | |
tree | 6810cc0b3ce87142c427b618c4b673cde7e96954 /gcc | |
parent | 2c4115ba9c031fbb6c3fe5605031303579421788 (diff) | |
download | gcc-23691ddd3aa3ffe55892b2bff54f9a15a89de2b4.zip gcc-23691ddd3aa3ffe55892b2bff54f9a15a89de2b4.tar.gz gcc-23691ddd3aa3ffe55892b2bff54f9a15a89de2b4.tar.bz2 |
Fix a typo in an AutoFDO error string
gcc/ChangeLog:
* auto-profile.c (read_profile): fix a typo in an error string
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/auto-profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/auto-profile.c b/gcc/auto-profile.c index 2a6d9a1..a460124 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; } |