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 478
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test empty IF statements
program emptyif
implicit none
logical c
logical d
if (c) then
c = .true.
end if
if (c) then
else
c = .true.
end if
if (c) then
c = .true.
else
end if
if (c) then
c = .true.
elseif (d) then
c = .true.
else
end if
if (c) then
c = .true.
elseif (d) then
else
c = .true.
end if
if (c) then
elseif (d) then
c = .true.
else
c = .true.
end if
end program
Go to most recent revision | Compare with Previous | Blame | View Log