Re: [Patch, Fortran] PR45859 - Permit array elements to coarray dummy arguments

2015-12-12 Thread Steve Kargl
On Wed, Dec 09, 2015 at 08:24:39AM +0100, Tobias Burnus wrote: > PING > OK. -- Steve

Re: [Patch, Fortran] PR45859 - Permit array elements to coarray dummy arguments

2015-12-08 Thread Tobias Burnus
PING On 4 December 2015, Tobias Burnus wrote: I pressed "Send" too early - as the testsuite fails unless the following patch is applied. I think I will just use this test case (with patch) instead of adding a new test-suite file. Required patch: --- a/gcc/testsuite/gfortran.dg/coarray_args_2.f9

Re: [Patch, Fortran] PR45859 - Permit array elements to coarray dummy arguments

2015-12-04 Thread Tobias Burnus
I pressed "Send" too early - as the testsuite fails unless the following patch is applied. I think I will just use this test case (with patch) instead of adding a new test-suite file. Required patch: --- a/gcc/testsuite/gfortran.dg/coarray_args_2.f90 +++ b/gcc/testsuite/gfortran.dg/coarray_args_2.

[Patch, Fortran] PR45859 - Permit array elements to coarray dummy arguments

2015-12-04 Thread Tobias Burnus
This patch permits interface subroutine sub (x) real x(10)[*] end subroutine end interface real :: x(100)[*] call sub (x(10)) end where one passes an array element ("x(10)") of a contiguous array to a coarray dummy argument. That's permitted per interpretation