projects
/
platform
/
upstream
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c4115b
)
Fix a typo in an AutoFDO error string
author
Eugene Rozenfeld
<erozen@microsoft.com>
Fri, 11 Jun 2021 23:28:55 +0000
(16:28 -0700)
committer
Eugene 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
patch
|
blob
|
history
diff --git
a/gcc/auto-profile.c
b/gcc/auto-profile.c
index 2a6d9a1fc247a9199a688170302798c7a2906667..a4601243dc9ce29dc04dcaaedfc6f1fa26e1549e 100644
(file)
--- 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;
}