]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fortran: reject invalid CHARACTER length of derived type components [PR96024]
authorHarald Anlauf <anlauf@gmx.de>
Tue, 21 Feb 2023 21:06:33 +0000 (22:06 +0100)
committerHarald Anlauf <anlauf@gmx.de>
Sat, 4 Mar 2023 19:10:03 +0000 (20:10 +0100)
gcc/fortran/ChangeLog:

PR fortran/96024
* resolve.cc (resolve_component): The type of a CHARACTER length
expression must be INTEGER.

gcc/testsuite/ChangeLog:

PR fortran/96024
* gfortran.dg/pr96024.f90: New test.

(cherry picked from commit 31303c9b5bab200754cdb7ef8cd91ae4918f3018)

gcc/fortran/resolve.cc
gcc/testsuite/gfortran.dg/pr96024.f90 [new file with mode: 0644]

index 5c66bfb15d960da85dce027400a1b3dd290d8e1d..59bdafecdbadfec39d40a566a00b4cbacb0a01ce 100644 (file)
@@ -14832,6 +14832,19 @@ resolve_component (gfc_component *c, gfc_symbol *sym)
                     c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
          return false;
        }
+
+     if (c->ts.u.cl->length && c->ts.u.cl->length->ts.type != BT_INTEGER)
+       {
+        if (!c->ts.u.cl->length->error)
+          {
+            gfc_error ("Character length expression of component %qs at %L "
+                       "must be of INTEGER type, found %s",
+                       c->name, &c->ts.u.cl->length->where,
+                       gfc_basic_typename (c->ts.u.cl->length->ts.type));
+            c->ts.u.cl->length->error = 1;
+          }
+        return false;
+       }
     }
 
   if (c->ts.type == BT_CHARACTER && c->ts.deferred
diff --git a/gcc/testsuite/gfortran.dg/pr96024.f90 b/gcc/testsuite/gfortran.dg/pr96024.f90
new file mode 100644 (file)
index 0000000..2c914a9
--- /dev/null
@@ -0,0 +1,11 @@
+! { dg-do compile }
+! PR fortran/96024 - ICE in mio_name_expr_t
+! Contributed by G.Steinmetz
+
+module m
+  implicit none
+  type t
+     character(char(1)) :: a ! { dg-error "must be of INTEGER type" }
+  end type
+  type(t) :: z = t('a')
+end