Commit 0f9d970d by Paul Thomas

re PR fortran/24207 (PRIVATE/PUBLIC attribute confusion screws NAMELIST)

2005-10-12  Paul Thomas  <pault@gcc.gnu.org>

	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  <pault@gcc.gnu.org>

	PR fortran/24207
	gfortran.dg/private_type_3.f90: New test.

From-SVN: r105289
parent 81871c2a
2005-10-12 Paul Thomas <pault@gcc.gnu.org>
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 <jakub@redhat.com> 2005-10-12 Jakub Jelinek <jakub@redhat.com>
* trans-common.c (build_field): Fix comment typo. * trans-common.c (build_field): Fix comment typo.
......
...@@ -4310,6 +4310,7 @@ resolve_symbol (gfc_symbol * sym) ...@@ -4310,6 +4310,7 @@ resolve_symbol (gfc_symbol * sym)
{ {
if (arg->sym if (arg->sym
&& arg->sym->ts.type == BT_DERIVED && arg->sym->ts.type == BT_DERIVED
&& !arg->sym->ts.derived->attr.use_assoc
&& !gfc_check_access(arg->sym->ts.derived->attr.access, && !gfc_check_access(arg->sym->ts.derived->attr.access,
arg->sym->ts.derived->ns->default_access)) arg->sym->ts.derived->ns->default_access))
{ {
...@@ -4412,7 +4413,11 @@ resolve_symbol (gfc_symbol * sym) ...@@ -4412,7 +4413,11 @@ resolve_symbol (gfc_symbol * sym)
{ {
for (nl = sym->namelist; nl; nl = nl->next) 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)) nl->sym->ns->default_access))
gfc_error ("PRIVATE symbol '%s' cannot be member of " gfc_error ("PRIVATE symbol '%s' cannot be member of "
"PUBLIC namelist at %L", nl->sym->name, "PUBLIC namelist at %L", nl->sym->name,
......
2005-10-12 Paul Thomas <pault@gcc.gnu.org>
PR fortran/24207
gfortran.dg/private_type_3.f90: New test.
2005-10-11 Steven G. Kargl <kargls@comcast.net> 2005-10-11 Steven G. Kargl <kargls@comcast.net>
PR fortran/20786 PR fortran/20786
! { dg-do compile }
! { dg-options "-O0" }
! Tests the fix for PR24207 and the problems associated
! with the fix for PR21986. In two cases, use associated
! public symbols were taking on the default private access
! attribute of the local namespace. In the third, a private
! symbol was not available to a namelist in contained
! procedure in the same module.
!
! Based on the example in PR24207.
!
module a
implicit none
real b
type :: mytype
integer :: c
end type mytype
end module a
module c
use a
implicit none
public d
private
real x
contains
subroutine d (arg_t) ! This would cause an error
type (mytype) :: arg_t
namelist /e/ b, x ! .... as would this.
read(5,e)
arg_t%c = 42
end subroutine d
end module c
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment