URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [ichar_2.f90] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! Test char and ichar intrinsic functions
Program test
integer i
if (ichar (char (0)) .ne. 0) call abort ()
if (ichar (char (255)) .ne. 255) call abort ()
if (ichar (char (127)) .ne. 127) call abort ()
i = 0
if (ichar (char (i)) .ne. i) call abort ()
i = 255
if (ichar (char (i)) .ne. i) call abort ()
i = 127
if (ichar (char (i)) .ne. i) call abort ()
end
Go to most recent revision | Compare with Previous | Blame | View Log