Fix PR 93956, wrong pointer when returned via function.
authorThomas König <tkoenig@gcc.gnu.org>
Thu, 23 Apr 2020 18:30:01 +0000 (20:30 +0200)
committerThomas König <tkoenig@gcc.gnu.org>
Thu, 23 Apr 2020 18:30:01 +0000 (20:30 +0200)
commit06eca1acafa27e19e82dc73927394a7a4d0bdbc5
tree4c1c6756bd17f5900f4ee9ff8d9386336cae1533
parentdcf69ac5448fd6a16137cfe9fe6deadd0ec0243d
Fix PR 93956, wrong pointer when returned via function.

This one took a bit of detective work.  When array pointers point
to components of derived types, we currently set the span field
and then create an array temporary when we pass the array
pointer to a procedure as a non-pointer or non-target argument.
(This is inefficient, but that's for another release).

Now, the compiler detected this case when there was a direct assignment
like p => a%b, but not when p was returned either as a function result
or via an argument.  This patch fixes that.

2020-04-23  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/93956
* expr.c (gfc_check_pointer_assign): Also set subref_array_pointer
when a function returns a pointer.
* interface.c (gfc_set_subref_array_pointer_arg): New function.
(gfc_procedure_use): Call it.

2020-04-23  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/93956
* gfortran.dg/pointer_assign_13.f90: New test.
gcc/fortran/ChangeLog
gcc/fortran/expr.c
gcc/fortran/interface.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/pointer_assign_13.f90 [new file with mode: 0644]