Corrigenda 1 TO 4 for fortran 2008 (f08/0011).
Transmit finalization of this constructor through 'finalblock'. */
- if (!gfc_notification_std (GFC_STD_F2018_DEL) && finalblock != NULL
+ if ((gfc_option.allow_std & (GFC_STD_F2008 | GFC_STD_F2003))
+ && !(gfc_option.allow_std & GFC_STD_GNU)
+ && finalblock != NULL
&& gfc_may_be_finalized (ts)
&& ctr > 0 && desc != NULL_TREE
&& GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
executable construct containing the reference. This, in fact,
was later deleted by the Combined Techical Corrigenda 1 TO 4 for
fortran 2008 (f08/0011). */
- if (!gfc_notification_std (GFC_STD_F2018_DEL) && expr->must_finalize
+ if ((gfc_option.allow_std & (GFC_STD_F2008 | GFC_STD_F2003))
+ && !(gfc_option.allow_std & GFC_STD_GNU)
+ && expr->must_finalize
&& gfc_may_be_finalized (expr->ts))
{
gfc_warning (0, "The structure constructor at %C has been"
--- /dev/null
+! { dg-do compile }
+! { dg-options "-w -fdump-tree-original" }
+!
+! Contributed by Sebastian Bardeau <bardeau@iram.fr>
+!
+module mymod
+ type mysubtype
+ integer(kind=4), allocatable :: a(:)
+ end type mysubtype
+ type :: mytype
+ integer :: i
+ type(mysubtype) :: sub
+ contains
+ final :: mytype_final
+ end type mytype
+contains
+ subroutine mysubtype_final(sub)
+ type(mysubtype), intent(inout) :: sub
+ print *,'MYSUBTYPE>FINAL'
+ if (allocated(sub%a)) deallocate(sub%a)
+ end subroutine mysubtype_final
+ subroutine mytype_final(typ)
+ type(mytype), intent(inout) :: typ
+ print *,"MYTYPE>FINAL"
+ call mysubtype_final(typ%sub)
+ end subroutine mytype_final
+end module mymod
+!
+program myprog
+ use mymod
+ type(mytype), pointer :: c
+ print *,"Before allocation"
+ allocate(c)
+ print *,"After allocation"
+end program myprog
+! Final subroutines were called with std=gnu and -w = > 14 "_final"s.
+! { dg-final { scan-tree-dump-times "_final" 12 "original" } }