OpenCores
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] - Blame information for rev 695

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 695 jeremybenn
! Program to test procudure args
2
subroutine test (a, b)
3
   integer, intent (IN) :: a
4
   integer, intent (OUT) :: b
5
 
6
   if (a .ne. 42) call abort
7
   b = 43
8
end subroutine
9
 
10
program args
11
   implicit none
12
   external test
13
   integer i, j
14
 
15
   i = 42
16
   j = 0
17
   CALL test (i, j)
18
   if (i .ne. 42) call abort
19
   if (j .ne. 43) call abort
20
   i = 41
21
   CALL test (i + 1, j)
22
end program

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.