aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/symbol.c
diff options
context:
space:
mode:
authorTobias Burnus <burnus@net-b.de>2010-06-08 08:37:32 +0200
committerTobias Burnus <burnus@gcc.gnu.org>2010-06-08 08:37:32 +0200
commitc064bf1cefe997074dcc4fec96317a63335634af (patch)
treefaee54b2196b28339a9768a43ed57cbe759b5fb1 /gcc/fortran/symbol.c
parentaf88c58fb826aad723367d1b1ac09b6b64c87c68 (diff)
downloadgcc-c064bf1cefe997074dcc4fec96317a63335634af.zip
gcc-c064bf1cefe997074dcc4fec96317a63335634af.tar.gz
gcc-c064bf1cefe997074dcc4fec96317a63335634af.tar.bz2
re PR fortran/44446 (Error with protected pocedure pointer)
2010-06-07 Tobias Burnus <burnus@net-b.de> PR fortran/44446 * symbol.c (check_conflict): Move protected--external/procedure check ... * resolve.c (resolve_select_type): ... to the resolution stage. 2010-06-07 Tobias Burnus <burnus@net-b.de> PR fortran/44446 * gfortran.dg/proc_ptr_27.f90: New. From-SVN: r160424
Diffstat (limited to 'gcc/fortran/symbol.c')
-rw-r--r--gcc/fortran/symbol.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c
index b436de5..adae49f 100644
--- a/gcc/fortran/symbol.c
+++ b/gcc/fortran/symbol.c
@@ -567,7 +567,6 @@ check_conflict (symbol_attribute *attr, const char *name, locus *where)
}
conf (is_protected, intrinsic)
- conf (is_protected, external)
conf (is_protected, in_common)
conf (asynchronous, intrinsic)
@@ -587,7 +586,6 @@ check_conflict (symbol_attribute *attr, const char *name, locus *where)
conf (procedure, dimension)
conf (procedure, codimension)
conf (procedure, intrinsic)
- conf (procedure, is_protected)
conf (procedure, target)
conf (procedure, value)
conf (procedure, volatile_)