diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-02-25 00:16:29 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-02-25 00:16:29 +0000 |
commit | 4028d01a050b478f245aab08702000976b7add2d (patch) | |
tree | 3ff16a3ddc4f2ede447887e89bb924ffdb95078b /gcc/fortran | |
parent | 94bfe81afedb6dbba877ee7c9f047375366f8996 (diff) | |
download | gcc-4028d01a050b478f245aab08702000976b7add2d.zip gcc-4028d01a050b478f245aab08702000976b7add2d.tar.gz gcc-4028d01a050b478f245aab08702000976b7add2d.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index e280e1e..91f35aa 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,19 @@ +2021-02-24 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/98342 + * trans-expr.c (gfc_conv_derived_to_class): Add optional arg. + 'derived_array' to hold the fixed, parmse expr in the case of + assumed rank formal arguments. Deal with optional arguments. + (gfc_conv_procedure_call): Null 'derived' array for each actual + argument. Add its address to the call to gfc_conv_derived_to_ + class. Access the 'data' field of scalar descriptors before + deallocating allocatable components. Also strip NOPs before the + calls to gfc_deallocate_alloc_comp. Use 'derived' array as the + input to gfc_deallocate_alloc_comp if it is available. + * trans.h : Include the optional argument 'derived_array' to + the prototype of gfc_conv_derived_to_class. The default value + is NULL_TREE. + 2021-02-23 Paul Thomas <pault@gcc.gnu.org> PR fortran/99124 |