diff options
author | Thomas Koenig <tkoenig@gcc.gnu.org> | 2025-01-13 22:38:20 +0100 |
---|---|---|
committer | Thomas Koenig <tkoenig@gcc.gnu.org> | 2025-01-13 22:41:42 +0100 |
commit | 51f76cd947aeb5fe9889b6fde5830031e292b30a (patch) | |
tree | 0e5556c96da57004bbf59559718c35ea7c6e555e /gcc/fortran/dump-parse-tree.cc | |
parent | a9ebf249063d2e8f6e8813fc954276766ad3a2fe (diff) | |
download | gcc-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.cc | 2 |
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); |