re PR fortran/80392 ([OOP] ICE with allocatable polymorphic function result in a...
authorJanus Weil <janus@gcc.gnu.org>
Fri, 21 Apr 2017 20:47:12 +0000 (22:47 +0200)
committerJanus Weil <janus@gcc.gnu.org>
Fri, 21 Apr 2017 20:47:12 +0000 (22:47 +0200)
2017-04-21  Janus Weil  <janus@gcc.gnu.org>

PR fortran/80392
* trans-types.c (gfc_get_derived_type): Prevent an infinite loop when
building a derived type that includes a procedure pointer component
with a polymorphic result.

2017-04-21  Janus Weil  <janus@gcc.gnu.org>

PR fortran/80392
* gfortran.dg/proc_ptr_comp_49.f90: New test case.

From-SVN: r247069

gcc/fortran/ChangeLog
gcc/fortran/trans-types.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/proc_ptr_comp_49.f90 [new file with mode: 0644]

index 58268d1..7058511 100644 (file)
@@ -1,3 +1,10 @@
+2017-04-21  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/80392
+       * trans-types.c (gfc_get_derived_type): Prevent an infinite loop when
+       building a derived type that includes a procedure pointer component
+       with a polymorphic result.
+
 2017-04-17  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/80440
index fc5e486..8617cd5 100644 (file)
@@ -2617,9 +2617,10 @@ gfc_get_derived_type (gfc_symbol * derived, int codimen)
         the same as derived, by forcing the procedure pointer component to
         be built as if the explicit interface does not exist.  */
       if (c->attr.proc_pointer
-         && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
-              || (c->ts.u.derived
-                  && !gfc_compare_derived_types (derived, c->ts.u.derived))))
+         && (c->ts.type != BT_DERIVED || (c->ts.u.derived
+                   && !gfc_compare_derived_types (derived, c->ts.u.derived)))
+         && (c->ts.type != BT_CLASS || (CLASS_DATA (c)->ts.u.derived
+                   && !gfc_compare_derived_types (derived, CLASS_DATA (c)->ts.u.derived))))
        field_type = gfc_get_ppc_type (c);
       else if (c->attr.proc_pointer && derived->backend_decl)
        {
index 95938c4..6f4dc8d 100644 (file)
@@ -1,3 +1,8 @@
+2017-04-21  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/80392
+       * gfortran.dg/proc_ptr_comp_49.f90: New test case.
+
 2017-04-21  Uros Bizjak  <ubizjak@gmail.com>
 
        * gcc.target/i386/pr79804.c: Add additional dg-error directive.
diff --git a/gcc/testsuite/gfortran.dg/proc_ptr_comp_49.f90 b/gcc/testsuite/gfortran.dg/proc_ptr_comp_49.f90
new file mode 100644 (file)
index 0000000..e89791f
--- /dev/null
@@ -0,0 +1,21 @@
+! { dg-do compile }
+!
+! PR 80392: [5/6/7 Regression] [OOP] ICE with allocatable polymorphic function result in a procedure pointer component
+!
+! Contributed by <zed.three@gmail.com>
+
+module mwe
+
+  implicit none
+
+  type :: MyType
+     procedure(my_op), nopass, pointer :: op
+  end type
+
+contains
+
+  function my_op() result(foo)
+    class(MyType), allocatable :: foo
+  end function
+
+end module