Commit 5933f9ae by Dominique d'Humieres Committed by Dominique d'Humieres

re PR fortran/41936 (Memory leakage with allocatables and user-defined operators)

2014-06-10  Dominique d'Humieres <dominiq@lps.ens.fr>
	    Mikael Morin <mikael@gcc.gnu.org>

	PR fortran/41936
gcc/fortran/
	* trans-expr.c (gfc_conv_expr_reference): Deallocate array
	components.

gcc/testsuite/
	* gfortran.dg/class_array_15.f03: Check memory leaks.


Co-Authored-By: Mikael Morin <mikael@gcc.gnu.org>

From-SVN: r211405
parent 5625721f
2014-06-10 Dominique d'Humieres <dominiq@lps.ens.fr>
Mikael Morin <mikael@gcc.gnu.org>
PR fortran/41936
* trans-expr.c (gfc_conv_expr_reference): Deallocate array
components.
2014-06-10 Jakub Jelinek <jakub@redhat.com> 2014-06-10 Jakub Jelinek <jakub@redhat.com>
PR fortran/60928 PR fortran/60928
......
...@@ -6506,6 +6506,20 @@ gfc_conv_expr_reference (gfc_se * se, gfc_expr * expr) ...@@ -6506,6 +6506,20 @@ gfc_conv_expr_reference (gfc_se * se, gfc_expr * expr)
/* Take the address of that value. */ /* Take the address of that value. */
se->expr = gfc_build_addr_expr (NULL_TREE, var); se->expr = gfc_build_addr_expr (NULL_TREE, var);
if (expr->ts.type == BT_DERIVED && expr->rank
&& !gfc_is_finalizable (expr->ts.u.derived, NULL)
&& expr->ts.u.derived->attr.alloc_comp
&& expr->expr_type != EXPR_VARIABLE)
{
tree tmp;
tmp = build_fold_indirect_ref_loc (input_location, se->expr);
tmp = gfc_deallocate_alloc_comp (expr->ts.u.derived, tmp, expr->rank);
/* The components shall be deallocated before
their containing entity. */
gfc_prepend_expr_to_block (&se->post, tmp);
}
} }
......
2014-06-10 Dominique d'Humieres <dominiq@lps.ens.fr>
Mikael Morin <mikael@gcc.gnu.org>
PR fortran/41936
* gfortran.dg/class_array_15.f03: Check memory leaks.
2014-06-10 Richard Biener <rguenther@suse.de> 2014-06-10 Richard Biener <rguenther@suse.de>
PR tree-optimization/57186 PR tree-optimization/57186
......
! { dg-do run } ! { dg-do run }
! { dg-options "-fdump-tree-original" }
! !
! Tests the fixes for three bugs with the same underlying cause. All are regressions ! Tests the fixes for three bugs with the same underlying cause. All are regressions
! that come about because class array elements end up with a different tree type ! that come about because class array elements end up with a different tree type
...@@ -114,3 +115,5 @@ subroutine pr54992 ! This test remains as the original. ...@@ -114,3 +115,5 @@ subroutine pr54992 ! This test remains as the original.
bh => bhGet(b,instance=2) bh => bhGet(b,instance=2)
if (loc (b) .ne. loc(bh%hostNode)) call abort if (loc (b) .ne. loc(bh%hostNode)) call abort
end end
! { dg-final { scan-tree-dump-times "builtin_free" 12 "original" } }
! { dg-final { cleanup-tree-dump "original" } }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment