Hi Manfred,
@@ -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/
Two typ
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
> th
Hi Harald,
there is one irregularity here (partial lower case instead of
consistently upper case:
+ if (attr->oacc_declare_copyin)
+ fputs (" OACC-DECLARE-copyin", dumpfile);
Otherwise this is OK.
Thanks for catching this!
Committed with the fix as
r15-6840-gf4fa0b7d493a4ba217d989d3df75
Hi Thomas,
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
t
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
ho