In the recent patch for dumping all attributes, there were
duplicates for attr->save, which is output via gfc_code2string
previously. This patch removes that double output.
gcc/fortran/ChangeLog:
* dump-parse-tree.cc (show_attr): Remove double output
of attr->save.
fputs (" AUTOMATIC", dumpfile);
if (attr->class_pointer)
fputs (" CLASS-POINTER", dumpfile);
- if (attr->save == SAVE_EXPLICIT)
- fputs (" SAVE-EXPLICIT", dumpfile);
- if (attr->save == SAVE_IMPLICIT)
- fputs (" SAVE-IMPLICIT", dumpfile);
if (attr->used_in_submodule)
fputs (" USED-IN-SUBMODULE", dumpfile);
if (attr->use_only)