This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: Request for help with the scalarizer
On 08/23/2012 11:43 AM, Tobias Burnus wrote:
- I get the following test-case suite failures:
...
gfortran.dg/ret_array_1.f90
At least that test case failes due to TRANSPOSE: We call
gfc_conv_expr_descriptor from within that function, before, the outer ss
was passed to the inner (ie the transposed one). Now one passes
gfc_conv_expr_descriptor (se, expr->value.function.actual->expr);
which generates a new ss for the argument, which is not transposed.
Tobias