Le 30/10/2022 à 20:23, Mikael Morin a écrit :

I think some discrepancy remains, as gfc_conv_procedure_call accumulates coarray stuff into the stringargs, while your change accumulates the associated parameter decls separately into hidden_arglist.  It's not completely clear to me whether it is really problematic (string length and coarray metadata are both integers anyway), but I suspect it is.
> I will see whether I can manage to exhibit testcases for these issues.

Here is a -fcoarray=lib example.  It can be placed in gfortran/coarray.

! { dg-do run }
!
! PR fortran/107441
! Check that with -fcoarray=lib, coarray metadata arguments are passed
! in the right order to procedures.
program p
  integer :: ci[*]
  ci = 17
  call s(1, ci, "abcd")
contains
  subroutine s(ra, ca, c)
    integer :: ra, ca[*]
    character(*) :: c
    ca[1] = 13
    if (ra /= 1) stop 1
    if (this_image() == 1) then
      if (ca /= 13) stop 2
    else
      if (ca /= 17) stop 3
    end if
    if (len(c) /= 4) stop 4
    if (c /= "abcd") stop 5
  end subroutine s
end program p

Reply via email to