OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [namelist_51.f90] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run }
2
! PR36676 Namelist comment problems
3
! test case from PR, reduced by Jerry DeLisle  
4
program mem_nml
5
    implicit none
6
    integer, save :: nxc
7
    nxc = 0
8
    call readNamelist()
9
contains
10
subroutine readNamelist()
11
implicit none
12
namelist /INPUT/    nxc
13
open(unit = 101, status="scratch")
14
write(101,'(a)')"&INPUT"
15
write(101,'(a)')""
16
write(101,'(a)')"!"
17
write(101,'(a)')"!"
18
write(101,'(a)')"!"
19
write(101,'(a)')"nxc = 100"
20
write(101,'(a)')"&END"
21
rewind(101)
22
read(unit = 101, nml = INPUT)
23
if (nxc /= 100) call abort
24
close(unit = 101)
25
endsubroutine
26
end program mem_nml
27
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.