Re: [PATCH 14/14] fortran: Pass pre-calculated class container argument [pr110618]

2023-07-14 Thread Mikael Morin
Hello, Le 14/07/2023 à 07:55, Paul Richard Thomas via Fortran a écrit : Hi Mikhail, This patch uses a field for gfc_se called class container, which is neither declared nor set as far as I can tell. These patches are dependent on my previous patchset for pr92178. Sorry, I didn't highlight tha

Re: [PATCH 14/14] fortran: Pass pre-calculated class container argument [pr110618]

2023-07-13 Thread Paul Richard Thomas via Fortran
Hi Mikhail, This patch uses a field for gfc_se called class container, which is neither declared nor set as far as I can tell. Regards Paul On Thu, 13 Jul 2023 at 10:05, Mikael Morin via Fortran wrote: > > Pass already evaluated class container argument from > gfc_conv_procedure_call down to g

[PATCH 14/14] fortran: Pass pre-calculated class container argument [pr110618]

2023-07-13 Thread Mikael Morin via Fortran
Pass already evaluated class container argument from gfc_conv_procedure_call down to gfc_add_finalizer_call through gfc_deallocate_scalar_with_status and gfc_deallocate_with_status, to avoid repeatedly evaluating the same data reference expressions in the generated code. PR fortran/110618