+2019-04-06 Thomas Koenig <tkoenig@gcc.gnu.org>
+
+ PR fortran/87352
+ * gfortran.h (gfc_component): Add finalized field.
+ * class.c (finalize_component): If the component is already
+ finalized, return early. Set component->finalized on exit.
+
2019-04-06 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/89981
if (!comp_is_finalizable (comp))
return;
+ if (comp->finalized)
+ return;
+
e = gfc_copy_expr (expr);
if (!e->ref)
e->ref = ref = gfc_get_ref ();
sub_ns);
gfc_free_expr (e);
}
+ comp->finalized = true;
}
struct gfc_typebound_proc *tb;
/* When allocatable/pointer and in a coarray the associated token. */
tree caf_token;
+ bool finalized;
}
gfc_component;
+2019-04-06 Thomas Koenig <tkoenig@gcc.gnu.org>
+
+ PR fortran/87352
+ * gfortran.dg/finalize_28.f90: Adjust count of __builtin_free.
+ * gfortran.dg/finalize_33.f90: Likewise.
+ * gfortran.dg/finalize_34.f90: New test.
+
2019-04-06 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/89981
integer, intent(out) :: edges(:,:)
end subroutine coo_dump_edges
end module coo_graphs
-! { dg-final { scan-tree-dump-times "__builtin_free" 6 "original" } }
+! { dg-final { scan-tree-dump-times "__builtin_free" 5 "original" } }
! (iii) mci_template
end program main_ut
! { dg-final { scan-tree-dump-times "__builtin_malloc" 17 "original" } }
-! { dg-final { scan-tree-dump-times "__builtin_free" 20 "original" } }
+! { dg-final { scan-tree-dump-times "__builtin_free" 19 "original" } }
--- /dev/null
+! { dg-do compile }
+! { dg-additional-options "-fdump-tree-original" }
+! PR 87352 - this used to cause an excessive number of deallocations.
+module testmodule
+ implicit none
+ public
+
+ type :: evtlist_type
+ real, allocatable, dimension(:) :: p1
+ real, allocatable, dimension(:) :: p2
+ real, allocatable, dimension(:) :: p3
+ real, allocatable, dimension(:) :: p4
+ end type evtlist_type
+
+ type :: evtlistlist_type
+ type(evtlist_type) :: evtlist(1:1)
+ end type evtlistlist_type
+
+end module testmodule
+
+program main
+ use testmodule
+ type(evtlist_type), dimension(10) :: a
+end program main
+! { dg-final { scan-tree-dump-times "__builtin_free" 8 "original" } }