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

Subversion Repositories openrisc

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

Compare with Previous | Blame | View Log

! Program to test the arithmetic if statement
function testif (a)
   implicit none
   integer a, b, testif

   if (a) 1, 2, 3
   b = 2
   goto 4
 1 b = -1
   goto 4
 2 b = 0
   goto 4
 3 b = 1
 4 testif = b
end function

program testwrite
   implicit none
   integer i
   integer testif

   if (testif (-10) .ne. -1) call abort
   if (testif (0) .ne. 0) call abort
   if (testif (10) .ne. 1) 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.