Commit 4e8e460b by Jakub Jelinek Committed by Jakub Jelinek

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
parent 3a99fd4d
2019-11-08 Jakub Jelinek <jakub@redhat.com>
* 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.
2018-11-07 Segher Boessenkool <segher@kernel.crashing.org> 2018-11-07 Segher Boessenkool <segher@kernel.crashing.org>
* simplify-rtx.c (comparison_to_mask): New function. * simplify-rtx.c (comparison_to_mask): New function.
2019-11-08 Jakub Jelinek <jakub@redhat.com>
* init.c (build_vec_delete_1): Fix a comment typo - mist -> must.
2019-11-07 Jason Merrill <jason@redhat.com> 2019-11-07 Jason Merrill <jason@redhat.com>
Implement D1959R0, remove weak_equality and strong_equality. Implement D1959R0, remove weak_equality and strong_equality.
......
...@@ -4060,7 +4060,7 @@ build_vec_delete_1 (tree base, tree maxindex, tree type, ...@@ -4060,7 +4060,7 @@ build_vec_delete_1 (tree base, tree maxindex, tree type,
else if (!body) else if (!body)
body = deallocate_expr; body = deallocate_expr;
else else
/* The delete operator mist be called, even if a destructor /* The delete operator must be called, even if a destructor
throws. */ throws. */
body = build2 (TRY_FINALLY_EXPR, void_type_node, body, deallocate_expr); body = build2 (TRY_FINALLY_EXPR, void_type_node, body, deallocate_expr);
......
...@@ -808,7 +808,7 @@ compare_virtual_tables (varpool_node *prevailing, varpool_node *vtable) ...@@ -808,7 +808,7 @@ compare_virtual_tables (varpool_node *prevailing, varpool_node *vtable)
return; return;
} }
/* And in the last case we have either mistmatch in between two virtual /* And in the last case we have either mismatch in between two virtual
methods or two virtual table pointers. */ methods or two virtual table pointers. */
auto_diagnostic_group d; auto_diagnostic_group d;
if (warning_at (DECL_SOURCE_LOCATION if (warning_at (DECL_SOURCE_LOCATION
......
...@@ -613,7 +613,7 @@ ipa_profile (void) ...@@ -613,7 +613,7 @@ ipa_profile (void)
if (dump_file) if (dump_file)
fprintf (dump_file, fprintf (dump_file,
"Not speculating: " "Not speculating: "
"parameter count mistmatch\n"); "parameter count mismatch\n");
} }
else if (e->indirect_info->polymorphic else if (e->indirect_info->polymorphic
&& !opt_for_fn (n->decl, flag_devirtualize) && !opt_for_fn (n->decl, flag_devirtualize)
......
...@@ -518,7 +518,7 @@ ipa_merge_profiles (struct cgraph_node *dst, ...@@ -518,7 +518,7 @@ ipa_merge_profiles (struct cgraph_node *dst,
{ {
if (symtab->dump_file) if (symtab->dump_file)
fprintf (symtab->dump_file, fprintf (symtab->dump_file,
"Edge count mistmatch for bb %i.\n", "Edge count mismatch for bb %i.\n",
srcbb->index); srcbb->index);
match = false; match = false;
break; break;
...@@ -531,7 +531,7 @@ ipa_merge_profiles (struct cgraph_node *dst, ...@@ -531,7 +531,7 @@ ipa_merge_profiles (struct cgraph_node *dst,
{ {
if (symtab->dump_file) if (symtab->dump_file)
fprintf (symtab->dump_file, fprintf (symtab->dump_file,
"Succ edge mistmatch for bb %i.\n", "Succ edge mismatch for bb %i.\n",
srce->dest->index); srce->dest->index);
match = false; match = false;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment