This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/20779] ALLOCATEing the STAT variable not detected


------- Additional Comments From tobi at gcc dot gnu dot org  2005-04-05 23:11 -------
Same problem, more ocmplicated testcase:

program fc012

! Submitted by Walt Brainerd, The Fortran Company
! Windows XP

! Reading specs from /usr/local/bin/../lib/gcc-lib/i686-pc-cygwin/4.0.0//specs
! Configured with: /gcc/configure --enable-languages=c
! Thread model: single
! gcc version 4.0.0 20050129 (experimental) (g95!) Feb 22 2005

  ! This program violates the following rule, identified below.

  integer, allocatable :: ALLOCS(:)

  ! The stat-variable must not be allocated within the same statement.
  ! This is not a constraint as in general it cannot be detected at
  ! compile-time (for example, the stat variable can be a subscripted variable
  ! whose subscript is determined at run time).

  allocate (ALLOCS(10),stat=ALLOCS(1))
  deallocate  (ALLOCS)

  print *, 'This program has one error'

end program fc012

-- 


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]