URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [emptyif.f90] - Rev 695
Compare with Previous | Blame | View Log
! Test empty if statements. We Used to fail this because we folded! the if stmt before we finished building it.program emptyifimplicit noneinteger ii=1if(i .le. 0) thenelsei = 2endifif (i .ne. 2) call abort()if (i .eq. 0) thenelseif (i .eq. 2) theni = 3end ifif (i .ne. 3) call abort()end
