URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [compile/] [emptyif.f90] - Rev 859
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