aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-utils.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2019-11-08 00:22:41 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2019-11-08 00:22:41 +0100
commit4e8e460b44fa758caa8fd20b7daa24a2f29d988b (patch)
tree155d8e926ce5cd9e68af8788fd401bf2a20b85ed /gcc/ipa-utils.c
parent3a99fd4dbb68c543299278c5bf5c04dfe93fc56c (diff)
downloadgcc-4e8e460b44fa758caa8fd20b7daa24a2f29d988b.zip
gcc-4e8e460b44fa758caa8fd20b7daa24a2f29d988b.tar.gz
gcc-4e8e460b44fa758caa8fd20b7daa24a2f29d988b.tar.bz2
ipa-utils.c (ipa_merge_profiles): Fix fprintf format string typo - mistmatch -> mismatch.
* ipa-utils.c (ipa_merge_profiles): Fix fprintf format string typo - mistmatch -> mismatch. * ipa-profile.c (ipa_profile): Likewise. * ipa-devirt.c (compare_virtual_tables): Fix a comment typo - mistmatch -> mismatch. cp/ * init.c (build_vec_delete_1): Fix a comment typo - mist -> must. From-SVN: r277933
Diffstat (limited to 'gcc/ipa-utils.c')
-rw-r--r--gcc/ipa-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ipa-utils.c b/gcc/ipa-utils.c
index 8849429..2830d41 100644
--- a/gcc/ipa-utils.c
+++ b/gcc/ipa-utils.c
@@ -518,7 +518,7 @@ ipa_merge_profiles (struct cgraph_node *dst,
{
if (symtab->dump_file)
fprintf (symtab->dump_file,
- "Edge count mistmatch for bb %i.\n",
+ "Edge count mismatch for bb %i.\n",
srcbb->index);
match = false;
break;
@@ -531,7 +531,7 @@ ipa_merge_profiles (struct cgraph_node *dst,
{
if (symtab->dump_file)
fprintf (symtab->dump_file,
- "Succ edge mistmatch for bb %i.\n",
+ "Succ edge mismatch for bb %i.\n",
srce->dest->index);
match = false;
break;