aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Jambor <mjambor@suse.cz>2023-02-06 15:16:49 +0100
committerMartin Jambor <mjambor@suse.cz>2023-02-06 15:18:28 +0100
commit4a910708fa24f5fe01d3cad51d5afe09db9dd2b2 (patch)
treec68728e2360facdb47340dc1218e933e9a99e661
parent5ebfd7ba2f612283656de4e7b8082bf82ef2b957 (diff)
downloadgcc-4a910708fa24f5fe01d3cad51d5afe09db9dd2b2.zip
gcc-4a910708fa24f5fe01d3cad51d5afe09db9dd2b2.tar.gz
gcc-4a910708fa24f5fe01d3cad51d5afe09db9dd2b2.tar.bz2
ipa-sra: Fix a typo in a dump string.
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.
-rw-r--r--gcc/ipa-sra.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ipa-sra.cc b/gcc/ipa-sra.cc
index 7a2b4dc..0495f44 100644
--- a/gcc/ipa-sra.cc
+++ b/gcc/ipa-sra.cc
@@ -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;
}