]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ipa-sra: Fix a typo in a dump string.
authorMartin Jambor <mjambor@suse.cz>
Mon, 6 Feb 2023 14:16:49 +0000 (15:16 +0100)
committerMartin Jambor <mjambor@suse.cz>
Mon, 6 Feb 2023 14:18:28 +0000 (15:18 +0100)
A fix to a typo spotted by Bernhard Reutner-Fischer.  Tested by
building the compiler with the fix.

gcc/ChangeLog:

2023-02-06  Martin Jambor  <mjambor@suse.cz>

* ipa-sra.cc (adjust_parameter_descriptions): Fix a typo in a dump.

gcc/ipa-sra.cc

index 7a2b4dc860805007d7b6aa985409811aee0ad77a..0495f446bf4b82cc467782bf1762f2b7d6002f73 100644 (file)
@@ -4249,8 +4249,8 @@ adjust_parameter_descriptions (cgraph_node *node, isra_func_summary *ifs)
 
   dump_list_of_param_indices (node, "are dead on arrival or have a type "
                              "mismatch with IPA-CP", dump_dead_indices);
-  dump_list_of_param_indices (node, "are not safe to derefernce in all callers",
-                             dump_bad_cond_indices);
+  dump_list_of_param_indices (node, "are not safe to dereference in all "
+                             "callers", dump_bad_cond_indices);
 
   return ret;
 }