URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [intrinsic_index.f90] - Rev 707
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test the INDEX intrinsic
program test
character(len=10) a
integer w
if (index("FORTRAN", "R") .ne. 3) call abort
if (index("FORTRAN", "R", .TRUE.) .ne. 5) call abort
if (w ("FORTRAN") .ne. 3) call abort
end
function w(str)
character(len=7) str
integer w
w = index(str, "R")
end
Go to most recent revision | Compare with Previous | Blame | View Log