From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21930 invoked by alias); 23 Dec 2007 11:40:54 -0000 Received: (qmail 21851 invoked by uid 48); 23 Dec 2007 11:40:42 -0000 Date: Sun, 23 Dec 2007 11:40:00 -0000 Subject: [Bug fortran/34566] New: 4.3 Regression: Matmul of logical values X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "burnus at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-12/txt/msg02087.txt.bz2 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