re PR fortran/57762 (Memory leak in gfortran.dg/class_array_7.f03 after revision...
authorTobias Burnus <burnus@net-b.de>
Mon, 22 Jul 2013 17:02:26 +0000 (19:02 +0200)
committerTobias Burnus <burnus@gcc.gnu.org>
Mon, 22 Jul 2013 17:02:26 +0000 (19:02 +0200)
2013-07-22  Tobias Burnus  <burnus@net-b.de>

        PR fortran/57762
        * gfortran.dg/class_array_7.f03: Fix memory leak.

From-SVN: r201137

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/class_array_7.f03

index 327018f..5b167b2 100644 (file)
@@ -1,3 +1,8 @@
+2013-07-22  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/57762
+       * gfortran.dg/class_array_7.f03: Fix memory leak.
+
 2013-07-22  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/52816
index 435e6f5..5c9673f 100644 (file)
@@ -54,4 +54,5 @@ program main
   if (trim (print_type ("a", a)) .ne. "a is extended_type") call abort
   call reallocate (a)
   if (trim (print_type ("a", a)) .ne. "a is base_type") call abort
+  deallocate (a)
 end program main