This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/48820] TR 29113: Implement parts needed for MPI 3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48820

--- Comment #6 from Walter Spector <w6ws at earthlink dot net> 2012-02-29 15:58:10 UTC ---
Tobias,

If you are interested, I tried the patch you posted on the email list to a
freshly checked out trunk.  After building the compiler, I tried the following
small test case:

module mpi_interface
  implicit none

  interface mpi_send
    subroutine MPI_Send (buf, count, datatype, dest, tag, comm, ierr)
      type(*), intent(in) :: buf(:)
      integer, intent(in) :: count
      integer, intent(in) :: datatype
      integer, intent(in) :: dest
      integer, intent(in) :: tag
      integer, intent(in) :: comm
      integer, intent(out):: ierr
    end subroutine
  end interface

end module

The compiler gave the following error:

mpi_interface.F90:16.10:

end module
          1
Internal Error at (1):
gfc_code2string(): Bad code

If I change the 'buf(:)' to 'buf(*)' I get the same error.

Hope this helps,

Walter


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]