aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/dump-parse-tree.cc
diff options
context:
space:
mode:
authorThomas Koenig <tkoenig@gcc.gnu.org>2025-01-13 22:38:20 +0100
committerThomas Koenig <tkoenig@gcc.gnu.org>2025-01-13 22:41:42 +0100
commit51f76cd947aeb5fe9889b6fde5830031e292b30a (patch)
tree0e5556c96da57004bbf59559718c35ea7c6e555e /gcc/fortran/dump-parse-tree.cc
parenta9ebf249063d2e8f6e8813fc954276766ad3a2fe (diff)
downloadgcc-51f76cd947aeb5fe9889b6fde5830031e292b30a.zip
gcc-51f76cd947aeb5fe9889b6fde5830031e292b30a.tar.gz
gcc-51f76cd947aeb5fe9889b6fde5830031e292b30a.tar.bz2
Fix typos in show_attr.
gcc/fortran/ChangeLog: * dump-parse-tree.cc (show_attr): Fix typos for in_equivalence.
Diffstat (limited to 'gcc/fortran/dump-parse-tree.cc')
-rw-r--r--gcc/fortran/dump-parse-tree.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/dump-parse-tree.cc b/gcc/fortran/dump-parse-tree.cc
index 97cab3f..cf09e8d 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);