mirror of git://gcc.gnu.org/git/gcc.git
Correction régression transpose_4.f90
This commit is contained in:
parent
076f0b6f87
commit
02a1c10ade
|
@ -6606,7 +6606,12 @@ contiguous_argument (gfc_actual_arglist *arg)
|
||||||
{
|
{
|
||||||
if (isym->id == GFC_ISYM_CAF_GET)
|
if (isym->id == GFC_ISYM_CAF_GET)
|
||||||
return true;
|
return true;
|
||||||
return false;
|
|
||||||
|
gfc_expr *noncopying_arg = gfc_get_noncopying_intrinsic_argument (expr);
|
||||||
|
if (noncopying_arg)
|
||||||
|
expr = noncopying_arg;
|
||||||
|
else
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dummy == nullptr)
|
if (dummy == nullptr)
|
||||||
|
|
Loading…
Reference in New Issue