Hi,

On Fri, Feb 03 2023, Bernhard Reutner-Fischer wrote:
> On 3 February 2023 12:35:32 CET, Richard Biener via Gcc-patches
>>
>>I think it's OK as-is given this explanation.
>>
>
> s/derefernce/dereference/
>

Thanks for noticing.  I am about to commit the following as an obvious
fix.

Martin


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  <mjam...@suse.cz>

        * ipa-sra.cc (adjust_parameter_descriptions): Fix a typo in a dump.
---
 gcc/ipa-sra.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/ipa-sra.cc b/gcc/ipa-sra.cc
index 7a2b4dc8608..0495f446bf4 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;
 }
-- 
2.39.0


Reply via email to