OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [intrinsic_dim.f90] - Rev 695

Compare with Previous | Blame | View Log

! Program to test the DIM intrinsic
program intrinsic_dim
   implicit none
   integer i, j
   real(kind=4) :: r, s
   real(kind=8) :: p, q

   i = 1
   j = 4
   if (dim (i, j) .ne. 0) call abort
   if (dim (j, i) .ne. 3) call abort
   r = 1.0
   s = 4.0
   if (dim (r, s) .ne. 0.0) call abort
   if (dim (s, r) .ne. 3.0) call abort
   p = 1.0
   q = 4.0
   if (dim (p, q) .ne. 0.0) call abort
   if (dim (q, p) .ne. 3.0) call abort
end program

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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