https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38312
Joost VandeVondele changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38312
--- Comment #9 from Dominique d'Humieres ---
> The current error message has changed :
>
> test.f90:7:6:
>
> co(i,j)=t1(i,k)*t2(j,k)
> 1
>
> Error: The function result on the lhs of the assignment at (1) must have
> the pointer attribu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38312
Joost VandeVondele changed:
What|Removed |Added
CC||Joost.VandeVondele at mat dot
ethz
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38312
Bud Davis changed:
What|Removed |Added
CC||bdavis at gcc dot gnu.org
--- Comment #7 from
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38312
--- Comment #6 from Steve Kargl
2011-11-12 22:41:06 UTC ---
On Sat, Nov 12, 2011 at 10:03:49PM +, kargl at gcc dot gnu.org wrote:
>
> --- Comment #5 from kargl at gcc dot gnu.org 2011-11-12 22:03:49 UTC ---
> I've looked at this issue, and I
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38312
kargl at gcc dot gnu.org changed:
What|Removed |Added
CC||kargl at gcc dot gnu.org
--- Co
--- Comment #4 from kargl at gcc dot gnu dot org 2008-12-11 18:59 ---
*** Bug 37793 has been marked as a duplicate of this bug. ***
--
kargl at gcc dot gnu dot org changed:
What|Removed |Added
---
--- Comment #3 from kargl at gcc dot gnu dot org 2008-12-11 18:58 ---
Change subject line.
Reduced test case
troutmask:sgk[204] cat pr38312.f90
SUBROUTINE S1(t1,t2,c0,n)
REAL :: t1(n),c0(n)
INTEGER :: i,j,k
DO i=1,n
co(i)=t1(i)*2
ENDDO
END SUBROUTINE S1
--
karg