aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/decl.c
diff options
context:
space:
mode:
authorPaul Thomas <pault@gcc.gnu.org>2018-06-03 11:14:51 +0000
committerPaul Thomas <pault@gcc.gnu.org>2018-06-03 11:14:51 +0000
commit5b9a3332c27e2f4ea372f2fc53bcbd27e204fb73 (patch)
treed015315146730a48895c8f167a12153e06f89093 /gcc/fortran/decl.c
parent12193bf1b0143795b460c96ebd609321f9663398 (diff)
downloadgcc-5b9a3332c27e2f4ea372f2fc53bcbd27e204fb73.zip
gcc-5b9a3332c27e2f4ea372f2fc53bcbd27e204fb73.tar.gz
gcc-5b9a3332c27e2f4ea372f2fc53bcbd27e204fb73.tar.bz2
re PR fortran/36497 (USE association, cray pointers and error checking)
2018-06-03 Paul Thomas <pault@gcc.gnu.org> PR fortran/36497 * decl.c (variable_decl): Use gfc_add_type for cray pointees. 2018-06-03 Paul Thomas <pault@gcc.gnu.org> PR fortran/36497 * gfortran.dg/cray_pointer_12.f90: New test. From-SVN: r261127
Diffstat (limited to 'gcc/fortran/decl.c')
-rw-r--r--gcc/fortran/decl.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c
index 2fca8ad..df21ce0 100644
--- a/gcc/fortran/decl.c
+++ b/gcc/fortran/decl.c
@@ -2431,7 +2431,7 @@ variable_decl (int elem)
}
if (not_constant)
- {
+ {
gfc_error ("Explicit shaped array with nonconstant bounds at %C");
m = MATCH_ERROR;
goto cleanup;
@@ -2535,13 +2535,12 @@ variable_decl (int elem)
gfc_find_symbol (name, gfc_current_ns, 1, &sym);
if (sym != NULL && sym->attr.cray_pointee)
{
- sym->ts.type = current_ts.type;
- sym->ts.kind = current_ts.kind;
- sym->ts.u.cl = cl;
- sym->ts.u.derived = current_ts.u.derived;
- sym->ts.is_c_interop = current_ts.is_c_interop;
- sym->ts.is_iso_c = current_ts.is_iso_c;
m = MATCH_YES;
+ if (!gfc_add_type (sym, &current_ts, &gfc_current_locus))
+ {
+ m = MATCH_ERROR;
+ goto cleanup;
+ }
/* Check to see if we have an array specification. */
if (cp_as != NULL)