]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fortran: improve error recovery for invalid coarray function declarations
authorHarald Anlauf <anlauf@gmx.de>
Tue, 29 Mar 2022 21:33:23 +0000 (23:33 +0200)
committerHarald Anlauf <anlauf@gmx.de>
Thu, 7 Apr 2022 18:48:19 +0000 (20:48 +0200)
gcc/fortran/ChangeLog:

PR fortran/104210
* arith.c (eval_intrinsic): Avoid NULL pointer dereference.
(gfc_zero_size_array): Likewise.

gcc/testsuite/ChangeLog:

PR fortran/104210
* gfortran.dg/pr104210.f90: New test.

(cherry picked from commit 892c7f03ae63121766a8be48f7e3b672547fd627)

gcc/fortran/arith.c
gcc/testsuite/gfortran.dg/pr104210.f90 [new file with mode: 0644]

index f0d596b0706e582f41133cb2660596dbec2108b7..8a0d70d23ba182521ca4e14a736db2ff02e7a8ff 100644 (file)
@@ -1489,6 +1489,9 @@ eval_intrinsic (gfc_intrinsic_op op,
   int unary;
   arith rc;
 
+  if (!op1)
+    return NULL;
+
   gfc_clear_ts (&temp.ts);
 
   switch (op)
@@ -1703,11 +1706,11 @@ eval_type_intrinsic0 (gfc_intrinsic_op iop, gfc_expr *op)
 
 /* Return nonzero if the expression is a zero size array.  */
 
-static int
+static bool
 gfc_zero_size_array (gfc_expr *e)
 {
-  if (e->expr_type != EXPR_ARRAY)
-    return 0;
+  if (e == NULL || e->expr_type != EXPR_ARRAY)
+    return false;
 
   return e->value.constructor == NULL;
 }
diff --git a/gcc/testsuite/gfortran.dg/pr104210.f90 b/gcc/testsuite/gfortran.dg/pr104210.f90
new file mode 100644 (file)
index 0000000..182404c
--- /dev/null
@@ -0,0 +1,15 @@
+! { dg-do compile }
+! { dg-options "-fcoarray=single" }
+! PR fortran/104210
+! Contributed by G.Steinmetz
+
+function f()      ! { dg-error "shall not be a coarray" }
+  integer :: f[*]
+end
+program p
+  interface
+     function f() ! { dg-error "shall not be a coarray" }
+       integer :: f[*]
+     end
+  end interface
+end