This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libfortran/30533] minval, maxval missing for kind=1 and kind=2
- From: "tkoenig at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Feb 2007 19:57:46 -0000
- Subject: [Bug libfortran/30533] minval, maxval missing for kind=1 and kind=2
- References: <bug-30533-10391@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #6 from tkoenig at gcc dot gnu dot org 2007-02-10 19:57 -------
sum is also missing:
$ cat sum.f90
program main
integer(kind=1), dimension(2,2) :: a
a = 1
print *,sum(a,dim=2)
end program main
$ gfortran sum.f90
/tmp/ccQgrJa3.o: In function `MAIN__':
sum.f90:(.text+0x126): undefined reference to `_gfortran_sum_i1'
collect2: ld returned 1 exit status
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30533