Re: [PATCH] PR fortran/92178 -- Re-order argument deallocation

2019-10-28 Thread Tobias Burnus
On 10/23/19 8:12 PM, Steve Kargl wrote: * trans-expr.c (gfc_conv_procedure_call): Evaluate args and then deallocate actual args assocated with intent(out) dummies. I think the patch by itself looks fine to me – except that the saw_dealloc is not needed. You can either check "if

[PATCH] PR fortran/92178 -- Re-order argument deallocation

2019-10-23 Thread Steve Kargl
The attached patch has been tested on x86_64-*-freebsd. OK to commit? 2019-10-23 Steven G. Kargl PR fortran/92178 * trans-expr.c (gfc_conv_procedure_call): Evaluate args and then deallocate actual args assocated with intent(out) dummies. 2019-10-23 Steven G. Kargl