URL
                    https://opencores.org/ocsvn/openrisc/openrisc/trunk
                
            Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [args.f90] - Rev 695
Compare with Previous | Blame | View Log
! Program to test procudure argssubroutine test (a, b)integer, intent (IN) :: ainteger, intent (OUT) :: bif (a .ne. 42) call abortb = 43end subroutineprogram argsimplicit noneexternal testinteger i, ji = 42j = 0CALL test (i, j)if (i .ne. 42) call abortif (j .ne. 43) call aborti = 41CALL test (i + 1, j)end program
