From: Thomas Koenig Date: Mon, 13 Jan 2025 21:38:20 +0000 (+0100) Subject: Fix typos in show_attr. X-Git-Tag: basepoints/gcc-16~2675 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51f76cd947aeb5fe9889b6fde5830031e292b30a;p=thirdparty%2Fgcc.git Fix typos in show_attr. gcc/fortran/ChangeLog: * dump-parse-tree.cc (show_attr): Fix typos for in_equivalence. --- diff --git a/gcc/fortran/dump-parse-tree.cc b/gcc/fortran/dump-parse-tree.cc index 97cab3f85f9..cf09e8d5b82 100644 --- a/gcc/fortran/dump-parse-tree.cc +++ b/gcc/fortran/dump-parse-tree.cc @@ -871,7 +871,7 @@ show_attr (symbol_attribute *attr, const char * module) if (attr->in_common) fputs (" IN-COMMON", dumpfile); if (attr->in_equivalence) - fputs (" IN_EQUIVALENDE", dumpfile); + fputs (" IN-EQUIVALENCE", dumpfile); if (attr->abstract) fputs (" ABSTRACT", dumpfile);