Commit 2e7a391e by Jerry DeLisle

re PR fortran/35627 (namelist read error)

2008-03-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libfortran/35627
	* gfortran.dg/namelist_46.f90: New test.

From-SVN: r133361
parent 17f46ec3
2008-03-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/35627
* gfortran.dg/namelist_46.f90: New test.
2008-03-20 Uros Bizjak <ubizjak@gmail.com>
PR target/14552
! { dg-do run }
! PR35627 Namelist read problem with short logical followed by read real
program test
implicit none
LOGICAL :: nlco(200) ! (1:nbeam)
REAL(kind=8):: xlbtna(200) ! (1:nbeam)
NAMELIST/nbdrive_naml/ nlco, xlbtna
INTEGER :: nbshapa(200) ! (1:nbeam)
NAMELIST/nbdrive_naml/ nbshapa
nlco = .false.
xlbtna = 0.0_8
nbshapa = 0
open(10, file='t.nml')
write(10,'(a)') "&nbdrive_naml"
write(10,'(a)') "nlco = 4*T,"
write(10,'(a)') "xlbtna = 802.8, 802.8, 802.8, 802.8"
write(10,'(a)') "nbshapa = 4*1"
write(10,'(a)') "/"
rewind(10)
read(10, nbdrive_naml)
!write(*,nbdrive_naml)
close(10, status="delete")
end program test
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment