+2015-08-03 Mikael Morin <mikael@gcc.gnu.org>
+
+ PR fortran/64921
+ * class.c (generate_finalization_wrapper): Set finalization
+ procedure symbol's always_explicit attribute.
+
2015-08-01 Paul Thomas <pault@gcc.gnu.org>
PR fortran/67091
final->ts.type = BT_INTEGER;
final->ts.kind = 4;
final->attr.artificial = 1;
+ final->attr.always_explicit = 1;
final->attr.if_source = expr_null_wrapper ? IFSRC_IFBODY : IFSRC_DECL;
if (ns->proc_name->attr.flavor == FL_MODULE)
final->module = ns->proc_name->name;
+2015-08-03 Mikael Morin <mikael@gcc.gnu.org>
+
+ PR fortran/64921
+ * gfortran.dg/class_allocate_20.f90: New.
+
2015-08-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* gcc.target/aarch64/csel_bfx_1.c: New test.
2015-08-02 Martin Sebor <msebor@redhat.com>
- * g++.dg/Wframe-address-in-Wall.C: New test.
- * g++.dg/Wframe-address.C: New test.
- * g++.dg/Wno-frame-address.C: New test.
- * gcc.dg/Wframe-address-in-Wall.c: New test.
- * gcc.dg/Wframe-address.c: New test.
- * gcc.dg/Wno-frame-address.c: New test.
+ * g++.dg/Wframe-address-in-Wall.C: New test.
+ * g++.dg/Wframe-address.C: New test.
+ * g++.dg/Wno-frame-address.C: New test.
+ * gcc.dg/Wframe-address-in-Wall.c: New test.
+ * gcc.dg/Wframe-address.c: New test.
+ * gcc.dg/Wno-frame-address.c: New test.
2015-08-02 Patrick Palka <ppalka@gcc.gnu.org>
--- /dev/null
+! { dg-do run }
+!
+! PR fortran/64921
+! Test that the finalization wrapper procedure get the always_explicit
+! attribute so that the array is not passed without descriptor from
+! T3's finalization wrapper procedure to T2's one.
+!
+! Contributed by Mat Cross <mathewc@nag.co.uk>
+
+Program test
+ Implicit None
+ Type :: t1
+ Integer, Allocatable :: i
+ End Type
+ Type :: t2
+ Integer, Allocatable :: i
+ End Type
+ Type, Extends (t1) :: t3
+ Type (t2) :: j
+ End Type
+ Type, Extends (t3) :: t4
+ Integer, Allocatable :: k
+ End Type
+ Call s
+ Print *, 'ok'
+Contains
+ Subroutine s
+ Class (t1), Allocatable :: x
+ Allocate (t4 :: x)
+ End Subroutine
+End Program
+! { dg-output "ok" }