https://gcc.gnu.org/g:51f76cd947aeb5fe9889b6fde5830031e292b30a

commit r15-6878-g51f76cd947aeb5fe9889b6fde5830031e292b30a
Author: Thomas Koenig <tkoe...@gcc.gnu.org>
Date:   Mon Jan 13 22:38:20 2025 +0100

    Fix typos in show_attr.
    
    gcc/fortran/ChangeLog:
    
            * dump-parse-tree.cc (show_attr): Fix typos for in_equivalence.

Diff:
---
 gcc/fortran/dump-parse-tree.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/fortran/dump-parse-tree.cc b/gcc/fortran/dump-parse-tree.cc
index 97cab3f85f92..cf09e8d5b823 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);

Reply via email to