From 0f9d970d60d34ab6d7f47e741df998e396c999c3 Mon Sep 17 00:00:00 2001 From: Paul Thomas Date: Wed, 12 Oct 2005 07:19:56 +0000 Subject: re PR fortran/24207 (PRIVATE/PUBLIC attribute confusion screws NAMELIST) 2005-10-12 Paul Thomas PR fortran/24207 * resolve.c (resolve_symbol): Exclude use and host associated symbols from the test for private objects in a public namelist. 2005-10-12 Paul Thomas PR fortran/24207 gfortran.dg/private_type_3.f90: New test. From-SVN: r105289 --- gcc/fortran/ChangeLog | 6 ++++++ gcc/fortran/resolve.c | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) (limited to 'gcc/fortran') diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 74e74af..b7eec33 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2005-10-12 Paul Thomas + + PR fortran/24207 + * resolve.c (resolve_symbol): Exclude use and host associated + symbols from the test for private objects in a public namelist. + 2005-10-12 Jakub Jelinek * trans-common.c (build_field): Fix comment typo. diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c index f057340..5de16ba 100644 --- a/gcc/fortran/resolve.c +++ b/gcc/fortran/resolve.c @@ -4310,6 +4310,7 @@ resolve_symbol (gfc_symbol * sym) { if (arg->sym && arg->sym->ts.type == BT_DERIVED + && !arg->sym->ts.derived->attr.use_assoc && !gfc_check_access(arg->sym->ts.derived->attr.access, arg->sym->ts.derived->ns->default_access)) { @@ -4412,7 +4413,11 @@ resolve_symbol (gfc_symbol * sym) { for (nl = sym->namelist; nl; nl = nl->next) { - if (!gfc_check_access(nl->sym->attr.access, + if (!nl->sym->attr.use_assoc + && + !(sym->ns->parent == nl->sym->ns) + && + !gfc_check_access(nl->sym->attr.access, nl->sym->ns->default_access)) gfc_error ("PRIVATE symbol '%s' cannot be member of " "PUBLIC namelist at %L", nl->sym->name, -- cgit v1.1