re PR fortran/54594 ([OOP] Type-bound ASSIGNMENTs (elemental + array version) rejecte...
authorJanus Weil <janus@gcc.gnu.org>
Sun, 16 Sep 2012 20:49:20 +0000 (22:49 +0200)
committerJanus Weil <janus@gcc.gnu.org>
Sun, 16 Sep 2012 20:49:20 +0000 (22:49 +0200)
2012-09-16  Janus Weil  <janus@gcc.gnu.org>

PR fortran/54594
* interface.c (compare_type_rank): Handle CLASS arrays.

2012-09-16  Janus Weil  <janus@gcc.gnu.org>

PR fortran/54594
* gfortran.dg/typebound_generic_14.f03: New.

From-SVN: r191365

gcc/fortran/ChangeLog
gcc/fortran/interface.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/typebound_generic_14.f03 [new file with mode: 0644]

index bf9f0b93ae649d5789e79d847fef280566592916..e01ae683f4f879ed9ba99945fd131c547ce82f98 100644 (file)
@@ -1,3 +1,8 @@
+2012-09-16  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/54594
+       * interface.c (compare_type_rank): Handle CLASS arrays.
+
 2012-09-16  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/54387
index 482c294ecbacf15cbd80f2ad0cd56294a8ea2cb6..b34885632ebed80d948ed3aabfd7bb1dad21cb23 100644 (file)
@@ -507,14 +507,18 @@ gfc_compare_types (gfc_typespec *ts1, gfc_typespec *ts2)
 static int
 compare_type_rank (gfc_symbol *s1, gfc_symbol *s2)
 {
+  gfc_array_spec *as1, *as2;
   int r1, r2;
 
-  r1 = (s1->as != NULL) ? s1->as->rank : 0;
-  r2 = (s2->as != NULL) ? s2->as->rank : 0;
+  as1 = (s1->ts.type == BT_CLASS) ? CLASS_DATA (s1)->as : s1->as;
+  as2 = (s2->ts.type == BT_CLASS) ? CLASS_DATA (s2)->as : s2->as;
+
+  r1 = as1 ? as1->rank : 0;
+  r2 = as2 ? as2->rank : 0;
 
   if (r1 != r2
-      && (!s1->as || s1->as->type != AS_ASSUMED_RANK)
-      && (!s2->as || s2->as->type != AS_ASSUMED_RANK))
+      && (!as1 || as1->type != AS_ASSUMED_RANK)
+      && (!as2 || as2->type != AS_ASSUMED_RANK))
     return 0;                  /* Ranks differ.  */
 
   return gfc_compare_types (&s1->ts, &s2->ts)
index 978e3dfc7fe1fdb72def3e39d65a2f56bd606368..4b68ef8d9e97b508e71469665dcb850c672c263c 100644 (file)
@@ -1,3 +1,8 @@
+2012-09-16  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/54594
+       * gfortran.dg/typebound_generic_14.f03: New.
+
 2012-09-16  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/54387
diff --git a/gcc/testsuite/gfortran.dg/typebound_generic_14.f03 b/gcc/testsuite/gfortran.dg/typebound_generic_14.f03
new file mode 100644 (file)
index 0000000..8515cf4
--- /dev/null
@@ -0,0 +1,27 @@
+! { dg-do compile }
+!
+! PR 54594: [OOP] Type-bound ASSIGNMENTs (elemental + array version) rejected as ambiguous
+!
+! Contributed by James van Buskirk
+
+module a_mod
+
+  type :: a
+   contains
+     procedure, NOPASS :: a_ass, a_ass_sv
+     generic :: ass => a_ass, a_ass_sv
+  end type
+
+contains
+
+  impure elemental subroutine a_ass (out)
+    class(a), intent(out) :: out
+  end subroutine
+
+  subroutine a_ass_sv (out)
+    class(a), intent(out) :: out(:)
+  end subroutine
+
+end module
+
+! { dg-final { cleanup-modules "a_mod" } }