URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [compile/] [emptyif.f90] - Rev 303
Compare with Previous | Blame | View Log
! Program to test empty IF statementsprogram emptyifimplicit nonelogical clogical dif (c) thenc = .true.end ifif (c) thenelsec = .true.end ifif (c) thenc = .true.elseend ifif (c) thenc = .true.elseif (d) thenc = .true.elseend ifif (c) thenc = .true.elseif (d) thenelsec = .true.end ifif (c) thenelseif (d) thenc = .true.elsec = .true.end ifend program
