summaryrefslogtreecommitdiffstats
path: root/gcc/fortran/array.c
diff options
context:
space:
mode:
authortobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-09 21:20:50 +0000
committertobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-09 21:20:50 +0000
commitc1a3b6650d36a1defa9e50049828459716dbc661 (patch)
treed3352c7a5ccff7412b5e6acf7f1978a0e40eb5b6 /gcc/fortran/array.c
parent6a2ba6a93baf120718f6e6fc641ca771b5fb3f96 (diff)
downloadppe42-gcc-c1a3b6650d36a1defa9e50049828459716dbc661.tar.gz
ppe42-gcc-c1a3b6650d36a1defa9e50049828459716dbc661.zip
PR fortran/13201
* resolve.c (resolve_symbol): Verify that the shape of a parameter array is not only explicit, but also constant. * array.c (gfc_is_compile_time_shape): New function. * gfortran.h (gfc_is_compile_time_shape): Add prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84400 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/array.c')
-rw-r--r--gcc/fortran/array.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/fortran/array.c b/gcc/fortran/array.c
index a7081d84305..c7fc8bbccf7 100644
--- a/gcc/fortran/array.c
+++ b/gcc/fortran/array.c
@@ -1973,3 +1973,22 @@ gfc_find_array_ref (gfc_expr * e)
return &ref->u.ar;
}
+
+
+/* Find out if an array shape is known at compile time. */
+
+int
+gfc_is_compile_time_shape (gfc_array_spec *as)
+{
+ int i;
+
+ if (as->type != AS_EXPLICIT)
+ return 0;
+
+ for (i = 0; i < as->rank; i++)
+ if (!gfc_is_constant_expr (as->lower[i])
+ || !gfc_is_constant_expr (as->upper[i]))
+ return 0;
+
+ return 1;
+}
OpenPOWER on IntegriCloud