Am 12.01.25 um 19:33 schrieb Thomas Koenig:
> Hell world,
>
> after finding that an attribute I was looking for was not
> in the -fdump-fortran-original dump, I started putting in
> attributes and didn't stop until I had them all (or so
> I hope :-) It should be easier to read than looking at
> the symbol attributes in a debugging session, and could
> hopefully make debugging the front end a bit easier.
>
> OK for trunk?
>
> Best regards
>
> Thomas
>
> gcc/fortran/ChangeLog:
>
> * dump-parse-tree.cc (show_attr): Dump all symbol attributes.
Sorry for this nitpicking from a lurker, I just noticed by chance:
@@ -868,6 +870,8 @@ show_attr (symbol_attribute *attr, const char * module)
fputs (" IN-NAMELIST", dumpfile);
if (attr->in_common)
fputs (" IN-COMMON", dumpfile);
+ if (attr->in_equivalence)
+ fputs (" IN_EQUIVALENDE", dumpfile);
s/IN_/IN-/
s/ENDE/ENCE/
most probably.