re PR fortran/60853 ([OOP] Failure to disambiguate generic with unlimited polymorphic)
authorJanus Weil <janus@gcc.gnu.org>
Fri, 25 Nov 2016 17:22:37 +0000 (18:22 +0100)
committerJanus Weil <janus@gcc.gnu.org>
Fri, 25 Nov 2016 17:22:37 +0000 (18:22 +0100)
2016-11-25  Janus Weil  <janus@gcc.gnu.org>

PR fortran/60853
* interface.c (gfc_compare_interfaces): Remove bad special case for
unlimited polymorphism. Refactor for loop.

2016-11-25  Janus Weil  <janus@gcc.gnu.org>

PR fortran/60853
* gfortran.dg/typebound_assignment_8.f90: New test case.

From-SVN: r242880

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

index 737a22c906ffb9837539a95c47e08788b7a4f2dc..b208f5c5288d93ce799e5d10862a27a06dd6c95a 100644 (file)
@@ -1,3 +1,9 @@
+2016-11-25  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/60853
+       * interface.c (gfc_compare_interfaces): Remove bad special case for
+       unlimited polymorphism. Refactor for loop.
+
 2016-11-25  Andre Vehreschild  <vehre@gcc.gnu.org>
            Paul Thomas  <pault@gcc.gnu.org>
 
index 4c8d67193ae38c99e44658a394d20f057bc8ec6c..f5d3f7762ca098da9a7aea532b2f14377f489788 100644 (file)
@@ -1728,11 +1728,9 @@ gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
        This is also done when comparing interfaces for dummy procedures and in
        procedure pointer assignments.  */
 
-    for (;;)
+    for (; f1 || f2; f1 = f1->next, f2 = f2->next)
       {
        /* Check existence.  */
-       if (f1 == NULL && f2 == NULL)
-         break;
        if (f1 == NULL || f2 == NULL)
          {
            if (errmsg != NULL)
@@ -1741,9 +1739,6 @@ gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
            return 0;
          }
 
-       if (UNLIMITED_POLY (f1->sym))
-         goto next;
-
        if (strict_flag)
          {
            /* Check all characteristics.  */
@@ -1772,9 +1767,6 @@ gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
                return 0;
              }
          }
-next:
-       f1 = f1->next;
-       f2 = f2->next;
       }
 
   return 1;
index a4f67e54d135c7f946ab3c09ac3de75341450ad4..e741b745d19f5d6681facb70b16a85582b060176 100644 (file)
@@ -1,3 +1,8 @@
+2016-11-25  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/60853
+       * gfortran.dg/typebound_assignment_8.f90: New test case.
+
 2016-11-25  Jakub Jelinek  <jakub@redhat.com>
 
        PR rtl-optimization/78527
diff --git a/gcc/testsuite/gfortran.dg/typebound_assignment_8.f90 b/gcc/testsuite/gfortran.dg/typebound_assignment_8.f90
new file mode 100644 (file)
index 0000000..1572777
--- /dev/null
@@ -0,0 +1,29 @@
+! { dg-do compile }
+!
+! PR 60853: [OOP] Failure to disambiguate generic with unlimited polymorphic
+!
+! Contributed by tlcclt <Thomas.L.Clune@nasa.gov>
+
+module foo_mod
+   implicit none
+
+   type Vector
+   contains
+      procedure :: copyFromScalar
+      procedure :: copyFromArray
+      generic :: assignment(=) => copyFromScalar, copyFromArray
+   end type
+
+contains
+
+   subroutine copyFromScalar(this, scalar)
+      class (Vector), intent(inout) :: this
+      type  (Vector), intent(in) :: scalar
+   end subroutine
+
+   subroutine copyFromArray(this, array)
+      class (Vector), intent(inout) :: this
+      class (*), intent(in) :: array(:)
+   end subroutine
+
+end module