diff options
author | Paul Thomas <pault@gcc.gnu.org> | 2006-12-04 11:16:12 +0000 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2006-12-04 12:16:12 +0100 |
commit | 98bbe5ee70747aff4449f719a0b3f00a9b72d5b0 (patch) | |
tree | 145d253b5815ed37a21759852507374e98f2f254 /gcc/fortran/resolve.c | |
parent | aad741f435aac46420c6294df03e0f78ee177747 (diff) | |
download | gcc-98bbe5ee70747aff4449f719a0b3f00a9b72d5b0.zip gcc-98bbe5ee70747aff4449f719a0b3f00a9b72d5b0.tar.gz gcc-98bbe5ee70747aff4449f719a0b3f00a9b72d5b0.tar.bz2 |
re PR fortran/29916 ([4.1 only] Dimension of a function result as host association does not work)
fortran/
2006-12-04 Paul Thomas <pault@gcc.gnu.org>
PR fortran/29916
* resolve.c (resolve_symbol): Allow host-associated variables
in the specification expression of an array-valued function.
* expr.c (check_restricted): Accept host-associated dummy
array indices.
testsuite/
2006-12-04 Paul Thomas <pault@gcc.gnu.org>
PR fortran/29916
* gfortran.dg/host_dummy_index_1.f90: Added additional test.
From-SVN: r119489
Diffstat (limited to 'gcc/fortran/resolve.c')
-rw-r--r-- | gcc/fortran/resolve.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c index d682b22..75a6ca3 100644 --- a/gcc/fortran/resolve.c +++ b/gcc/fortran/resolve.c @@ -6043,8 +6043,17 @@ resolve_symbol (gfc_symbol * sym) on COMMON blocks. */ check_constant = sym->attr.in_common && !sym->attr.pointer; + + /* Set the formal_arg_flag so that check_conflict will not throw + an error for host associated variables in the specification + expression for an array_valued function. */ + if (sym->attr.function && sym->as) + formal_arg_flag = 1; + gfc_resolve_array_spec (sym->as, check_constant); + formal_arg_flag = 0; + /* Resolve formal namespaces. */ if (formal_ns_flag && sym != NULL && sym->formal_ns != NULL) |