--- Comment #6 from pault at gcc dot gnu dot org 2008-11-01 19:47 ---
Jakub,
Thanks for the report - fixed by Mikael on trunk and 4.3.
Paul
--
pault at gcc dot gnu dot org changed:
What|Removed |Added
-
--- Comment #5 from pault at gcc dot gnu dot org 2008-11-01 19:47 ---
Subject: Bug 37749
Author: pault
Date: Sat Nov 1 19:45:41 2008
New Revision: 141521
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141521
Log:
2008-11-01 Mikael Morin <[EMAIL PROTECTED]>
PR fortran
--- Comment #4 from pault at gcc dot gnu dot org 2008-10-30 20:47 ---
Subject: Bug 37749
Author: pault
Date: Thu Oct 30 20:45:09 2008
New Revision: 141467
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141467
Log:
2008-10-30 Mikael Morin <[EMAIL PROTECTED]>
PR fortran
--- Comment #3 from pault at gcc dot gnu dot org 2008-10-30 11:13 ---
(In reply to comment #2)
> Created an attachment (id=16585)
--> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16585&action=view) [edit]
> proposed patch, regression tested
>
> This patch solves the problem by going
--- Comment #2 from mikael dot morin at tele2 dot fr 2008-10-29 21:06
---
Created an attachment (id=16585)
--> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16585&action=view)
proposed patch, regression tested
This patch solves the problem by going through all the loop dimensions in
--- Comment #1 from mikael dot morin at tele2 dot fr 2008-10-29 20:59
---
Reduced case:
subroutine subr (m, n, a, b, c, d, p)
implicit none
integer m, n
real a(m,n), b(m,n), c(n,n), d(m,n)
integer p(n)
d = a(:,p) - matmul(b, c)
end subroutine
The problem is with a(:,p) - ma
--
burnus at gcc dot gnu dot org changed:
What|Removed |Added
CC||burnus at gcc dot gnu dot
|