This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/18315] New: wrong result for lbound with single argument
- From: "Thomas dot Koenig at online dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 6 Nov 2004 12:43:13 -0000
- Subject: [Bug fortran/18315] New: wrong result for lbound with single argument
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
$ gfortran -v
Reading specs from /home/ig25/lib/gcc/i686-pc-linux-gnu/4.0.0/specs
Configured with: ../gcc/configure --prefix=/home/ig25
Thread model: posix
gcc version 4.0.0 20041105 (experimental)
$ cat lbound.f90
program main
implicit none
real :: a(0:9)
integer :: bn(10)
bn = lbound(a)
print *,bn(1)
end program main
$ gfortran lbound.f90
$ ./a.out
1
... it should print 0.
--
Summary: wrong result for lbound with single argument
Product: gcc
Version: 4.0.0
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: fortran
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: Thomas dot Koenig at online dot de
CC: gcc-bugs at gcc dot gnu dot org
GCC host triplet: i686-pc-linux-gnu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18315