[Bug fortran/35234] Undetected use before definition.

2015-08-12 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=35234

Manuel López-Ibáñez manu at gcc dot gnu.org changed:

   What|Removed |Added

 Status|RESOLVED|NEW
   Last reconfirmed||2015-08-12
 CC||manu at gcc dot gnu.org
 Resolution|DUPLICATE   |---
 Ever confirmed|0   |1

--- Comment #3 from Manuel López-Ibáñez manu at gcc dot gnu.org ---
(In reply to Francois-Xavier Coudert from comment #2)
 It's indeed a duplicate of 27120.

It seems it wasn't.

[Bug fortran/35234] Undetected use before definition.

2009-03-28 Thread fxcoudert at gcc dot gnu dot org


--- Comment #2 from fxcoudert at gcc dot gnu dot org  2009-03-28 13:39 
---
It's indeed a duplicate of 27120.

*** This bug has been marked as a duplicate of 27120 ***


-- 

fxcoudert at gcc dot gnu dot org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE


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



[Bug fortran/35234] Undetected use before definition.

2008-03-16 Thread dominiq at lps dot ens dot fr


--- Comment #1 from dominiq at lps dot ens dot fr  2008-03-16 13:46 ---
Reduced test case:

  program prandtl meyer 
  implicit none 
  integer :: i, j 
  integer, parameter :: imax = 100 
  integer, parameter :: jmax =  40 
  real, dimension(0:jmax,0:imax) :: f1, f1_bar
  do i = 0, imax-1 
 do j = 1, jmax-1 
f1_bar(j,i+1) = f1(j,i)
 end do 
  end do 
  stop 
  end program prandtl meyer 

[ibook-dhum] f90/bug% gfc -O -Wuninitialized -Wall timing/prandtl_red.f
[ibook-dhum] f90/bug%

I think it is a duplicate of PR27120.


-- 


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