Fortran: Fix type-decl for PDT / wrong-code pdt_14.f03 issue [PR97652]
authorTobias Burnus <tobias@codesourcery.com>
Fri, 6 Nov 2020 07:26:51 +0000 (08:26 +0100)
committerTobias Burnus <tobias@codesourcery.com>
Fri, 6 Nov 2020 07:26:51 +0000 (08:26 +0100)
Parameterized derived types are handled in a special way and start with 'Pdt'.
If the 'P' is not uppercase, gfc_get_derived_type (which calls
gfc_get_module_backend_decl) does not find the existing declaration and
builds a new type. The middle end then sees those types as being different
and nonalising, creating an endless loop for pdt_14.f03.

gcc/fortran/ChangeLog:

PR fortran/97652
* module.c (mio_symbol): Fix symbol name for pdt_type.

gcc/fortran/module.c

index 33e7df7d6a4a64dc55eca31e7c0c063758561c2d..4c6ff22d5c160d0d650a980961f6ac85e009df19 100644 (file)
@@ -4549,6 +4549,9 @@ mio_symbol (gfc_symbol *sym)
 
   mio_symbol_attribute (&sym->attr);
 
+  if (sym->attr.pdt_type)
+    sym->name = gfc_dt_upper_string (sym->name);
+
   /* Note that components are always saved, even if they are supposed
      to be private.  Component access is checked during searching.  */
   mio_component_list (&sym->components, sym->attr.vtype);