summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-05 14:20:51 +0000
committerpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-05 14:20:51 +0000
commitef95c72eedcf4c86338b63b4bd4ecae8f04e5b22 (patch)
tree42140c8a45a6377d974fed999e12f6737792497c
parentc16c63ec66b4b55f3505998476e20305515a3e2a (diff)
downloadgcc-ef95c72eedcf4c86338b63b4bd4ecae8f04e5b22.tar.gz
2009-09-05 Paul Thomas <pault@gcc.gnu.org>
PR fortran/41258 * primary.c (gfc_match_varspec): Do not look for typebound procedures unless the derived type has a f2k_derived namespace. 2009-09-05 Paul Thomas <pault@gcc.gnu.org> PR fortran/41258 * gfortran.dg/typebound_proc_12.f90 : New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151451 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/fortran/ChangeLog6
-rw-r--r--gcc/fortran/primary.c6
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.dg/typebound_proc_12.f9012
4 files changed, 28 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index aeae2835f3a..c392d9d5666 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-05 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/41258
+ * primary.c (gfc_match_varspec): Do not look for typebound
+ procedures unless the derived type has a f2k_derived namespace.
+
2009-09-03 Diego Novillo <dnovillo@google.com>
* f95-lang.c (lang_hooks): Remove const qualifier.
diff --git a/gcc/fortran/primary.c b/gcc/fortran/primary.c
index 267819c69f6..f25de2397bf 100644
--- a/gcc/fortran/primary.c
+++ b/gcc/fortran/primary.c
@@ -1783,7 +1783,11 @@ gfc_match_varspec (gfc_expr *primary, int equiv_flag, bool sub_flag,
if (m != MATCH_YES)
return MATCH_ERROR;
- tbp = gfc_find_typebound_proc (sym, &t, name, false, &gfc_current_locus);
+ if (sym->f2k_derived)
+ tbp = gfc_find_typebound_proc (sym, &t, name, false, &gfc_current_locus);
+ else
+ tbp = NULL;
+
if (tbp)
{
gfc_symbol* tbp_sym;
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 57ddbac05ba..cd4617183bb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-05 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/41258
+ * gfortran.dg/typebound_proc_12.f90 : New test.
+
2009-09-04 Alexandre Oliva <aoliva@redhat.com>
PR debug/41225
diff --git a/gcc/testsuite/gfortran.dg/typebound_proc_12.f90 b/gcc/testsuite/gfortran.dg/typebound_proc_12.f90
new file mode 100644
index 00000000000..4612d4982f3
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/typebound_proc_12.f90
@@ -0,0 +1,12 @@
+! { dg-do compile }
+! Test the fix for PR41258, where an ICE was caused by a search
+! for a typebound procedure to resolve d%c%e
+!
+! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
+!
+ TYPE a
+ TYPE(b), DIMENSION(:), POINTER :: c ! { dg-error "type that has not been declared" }
+ END TYPE
+ TYPE(a), POINTER :: d
+ CALL X(d%c%e) ! { dg-error "before it is defined" }
+end