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/29837] INTERFACE overloading INTENT problem - valid code is rejected



------- Comment #2 from kargl at gcc dot gnu dot org  2006-11-15 00:18 -------
The trivial workaround is to assign MAXVAL(X) to an integer.

 SUBROUTINE T(X)
    INTEGER, INTENT(IN) :: X(:)
    INTEGER Y, Z
    z = maxval(x)
    CALL A(z,Y)
  END SUBROUTINE T

I need to look at the standard with regards to conformance issues.


-- 


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


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