public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/34566]  New: 4.3 Regression: Matmul of logical values
@ 2007-12-23 11:40 burnus at gcc dot gnu dot org
  2007-12-23 13:06 ` [Bug fortran/34566] " tkoenig at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-12-23 11:40 UTC (permalink / raw)
  To: gcc-bugs

And another bug found via the test suite. It works with 4.1.3 and 4.2.2, but
with gfortran the result array is .FALSE.; however, result(1,3) shall be .TRUE.

program m
implicit none
logical, dimension (3, 3) :: &
   p = &
      reshape ( (/.false.,.false.,.false., &
                  .true., .false.,.false., &
                  .false.,.true., .false. /), &
                (/ 3, 3/) )
logical, dimension(3,3) :: result
result = matmul(p,p)
write(*,*) matmul(p,p)
if(any(result(2:3,:))) stop 'ERROR 1'
if(any(result(1,1:2))) stop 'ERROR 2'
if(.not.result(1,3))   stop 'ERROR 3'
end program m


-- 
           Summary: 4.3 Regression: Matmul of logical values
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: burnus at gcc dot gnu dot org
OtherBugsDependingO 32834
             nThis:


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2007-12-25 10:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-12-23 11:40 [Bug fortran/34566] New: 4.3 Regression: Matmul of logical values burnus at gcc dot gnu dot org
2007-12-23 13:06 ` [Bug fortran/34566] " tkoenig at gcc dot gnu dot org
2007-12-23 13:08 ` tkoenig at gcc dot gnu dot org
2007-12-23 13:26 ` tkoenig at gcc dot gnu dot org
2007-12-23 17:56 ` [Bug fortran/34566] [4.3 Regression] " pinskia at gcc dot gnu dot org
2007-12-23 21:48 ` tkoenig at gcc dot gnu dot org
2007-12-25 10:13 ` tkoenig at gcc dot gnu dot org
2007-12-25 10:14 ` tkoenig at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).