Save typespec for empty array constructor.
authorThomas Koenig <tkoenig@gcc.gnu.org>
Thu, 9 Jan 2020 20:57:33 +0000 (20:57 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Thu, 9 Jan 2020 20:57:33 +0000 (20:57 +0000)
2020-01-09  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/65428
* array.c (empty_constructor): New variable.
(empty_ts): New variable.
(expand_constructor): Save typespec in empty_ts.
Unset empty_constructor if there is an element.
(gfc_expand_constructor): Initialize empty_constructor
and empty_ts.  If there was no explicit constructor
type and the constructor is empty, take the type from
empty_ts.

2020-01-09  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/65428
* gfortran.dg/zero_sized_11.f90: New test.

From-SVN: r280063

gcc/fortran/ChangeLog
gcc/fortran/array.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/zero_sized_11.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/zero_sized_12.f90 [new file with mode: 0644]

index 80d37a362cff3fbfcf4598d7ced802b649ecfd01..c3ca3dedd291148439572bc44a6d98424a53f647 100644 (file)
@@ -1,3 +1,15 @@
+2020-01-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/65428
+       * array.c (empty_constructor): New variable.
+       (empty_ts): New variable.
+       (expand_constructor): Save typespec in empty_ts.
+       Unset empty_constructor if there is an element.
+       (gfc_expand_constructor): Initialize empty_constructor
+       and empty_ts.  If there was no explicit constructor
+       type and the constructor is empty, take the type from
+       empty_ts.
+
 2020-01-09  Tobias Burnus  <tobias@codesourcery.com>
 
        PR fortran/84135
index 157acb8cd9031bbb0fd9da486ecf702d207f32e2..c873cf2e09b15f6472e5889b29e07f5855715678 100644 (file)
@@ -1759,6 +1759,11 @@ cleanup:
   return t;
 }
 
+/* Variables for noticing if all constructors are empty, and
+   if any of them had a type.  */
+
+static bool empty_constructor;
+static gfc_typespec empty_ts;
 
 /* Expand a constructor into constant constructors without any
    iterators, calling the work function for each of the expanded
@@ -1782,6 +1787,9 @@ expand_constructor (gfc_constructor_base base)
 
       e = c->expr;
 
+      if (empty_constructor)
+       empty_ts = e->ts;
+
       if (e->expr_type == EXPR_ARRAY)
        {
          if (!expand_constructor (e->value.constructor))
@@ -1790,6 +1798,7 @@ expand_constructor (gfc_constructor_base base)
          continue;
        }
 
+      empty_constructor = false;
       e = gfc_copy_expr (e);
       if (!gfc_simplify_expr (e, 1))
        {
@@ -1873,6 +1882,8 @@ gfc_expand_constructor (gfc_expr *e, bool fatal)
 
   iter_stack = NULL;
 
+  empty_constructor = true;
+  gfc_clear_ts (&empty_ts);
   current_expand.expand_work_function = expand;
 
   if (!expand_constructor (e->value.constructor))
@@ -1882,6 +1893,13 @@ gfc_expand_constructor (gfc_expr *e, bool fatal)
       goto done;
     }
 
+  /* If we don't have an explicit constructor type, and there
+     were only empty constructors, then take the type from
+     them.  */
+
+  if (constructor_ts.type == BT_UNKNOWN && empty_constructor)
+    e->ts = empty_ts;
+
   gfc_constructor_free (e->value.constructor);
   e->value.constructor = current_expand.base;
 
index 0cf4394c64017bc276dbe0aba951cd7ad09e7cd9..0c1dee3497a29ea65e19959a5da6b5f8a79e47e1 100644 (file)
@@ -1,3 +1,9 @@
+2020-01-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/65428
+       * gfortran.dg/zero_sized_11.f90: New test.
+       * gfortran.dg/zero_sized_12.f90: New test.
+
 2020-01-09  Richard Sandiford  <richard.sandiford@arm.com>
 
        * g++.target/aarch64/sve/acle/general-c++/mul_lane_1.c: New test.
diff --git a/gcc/testsuite/gfortran.dg/zero_sized_11.f90 b/gcc/testsuite/gfortran.dg/zero_sized_11.f90
new file mode 100644 (file)
index 0000000..35f7534
--- /dev/null
@@ -0,0 +1,8 @@
+! { dg-do compile }
+! PR 65428 - this used to ICE.  Original test case by FX Coudert.
+program p
+   integer :: i
+   print *, [shape(1)]
+   print *, [[ integer :: ]]
+   print *, (/ (/ (i, i=1,0) /) /)
+end
diff --git a/gcc/testsuite/gfortran.dg/zero_sized_12.f90 b/gcc/testsuite/gfortran.dg/zero_sized_12.f90
new file mode 100644 (file)
index 0000000..592c19f
--- /dev/null
@@ -0,0 +1,17 @@
+! { dg-do compile }
+! PR 65248 - this used to ICE. Test case by Tobias Burnus.
+
+program main
+  
+! C7110  (R770) If type-spec is omitted, each ac-value expression in the
+! array-constructor shall have the same declared type and kind type parameters
+
+! Should be fine as there is either no or only one ac-value:
+print *, [[integer ::],[real::]]
+print *, [[integer ::],[real::], [1], [real ::]]
+print *, [[integer ::],[real::], ["ABC"], [real ::]] // "ABC"
+print *, [integer :: [integer ::],[real::]]
+
+! OK - accepted
+print *, [integer :: [1],[1.0]]
+end