URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [byte_2.f90] - Rev 816
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-options "-std=gnu" }program testbyteinteger(1) :: ii = 7call foo(ii)end program testbytesubroutine foo(ii)integer(1) iibyte bb = iicall bar(ii,b)end subroutine foosubroutine bar(ii,b)integer (1) iibyte bif (b.ne.ii) then! print *,"Failed"call abortend ifend subroutine bar
