This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/14928] [gfortran] minval intrinsic does not understand mask
- From: "tobi at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 3 Jun 2004 18:38:07 -0000
- Subject: [Bug fortran/14928] [gfortran] minval intrinsic does not understand mask
- References: <20040412204218.14928.schnetter@aei.mpg.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From tobi at gcc dot gnu dot org 2004-06-03 18:38 -------
Isn't "MASK=" required?
subroutine a (b, c)
implicit none
double precision b(10)
integer c(1)
c = minloc (b, mask=b<0)
end subroutine a
compiles without problem.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14928