gfc_match_decl_type_spec (gfc_typespec *ts, int implicit_flag)
{
/* Provide sufficient space to hold "pdtsymbol". */
- char name[GFC_MAX_SYMBOL_LEN + 1 + 3];
+ char *name = XALLOCAVEC (char, GFC_MAX_SYMBOL_LEN + 1);
gfc_symbol *sym, *dt_sym;
match m;
char c;
gcc_assert (!sym->attr.pdt_template && sym->attr.pdt_type);
ts->u.derived = sym;
const char* lower = gfc_dt_lower_string (sym->name);
- size_t len = strnlen (lower, sizeof (name));
- gcc_assert (len < sizeof (name));
+ size_t len = strlen (lower);
+ /* Reallocate with sufficient size. */
+ if (len > GFC_MAX_SYMBOL_LEN)
+ name = XALLOCAVEC (char, len + 1);
memcpy (name, lower, len);
name[len] = '\0';
}
--- /dev/null
+! { dg-do compile }
+! { dg-options "-fsecond-underscore" }
+! PR fortran/95826 - ICE in gfc_match_decl_type_spec, at fortran/decl.c:4290
+
+program p
+ type t2345678901234567890123456789012345678901234567890123456789_123 &
+ (a2345678901234567890123456789012345678901234567890123456789_123, &
+ b2345678901234567890123456789012345678901234567890123456789_123)
+ integer, kind :: &
+ a2345678901234567890123456789012345678901234567890123456789_123
+ integer, len :: &
+ b2345678901234567890123456789012345678901234567890123456789_123
+ end type
+ integer, parameter :: &
+ n2345678901234567890123456789012345678901234567890123456789_123 = 16
+ type(t2345678901234567890123456789012345678901234567890123456789_123 &
+ (n2345678901234567890123456789012345678901234567890123456789_123,:)), &
+ allocatable :: &
+ x2345678901234567890123456789012345678901234567890123456789_123
+end