URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [binding_c_table_15_1.f03] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! Test the named constants in Table 15.1.
program a
use, intrinsic :: iso_c_binding
implicit none
if (C_NULL_CHAR /= CHAR(0) ) call abort
if (C_ALERT /= ACHAR(7) ) call abort
if (C_BACKSPACE /= ACHAR(8) ) call abort
if (C_FORM_FEED /= ACHAR(12)) call abort
if (C_NEW_LINE /= ACHAR(10)) call abort
if (C_CARRIAGE_RETURN /= ACHAR(13)) call abort
if (C_HORIZONTAL_TAB /= ACHAR(9) ) call abort
if (C_VERTICAL_TAB /= ACHAR(11)) call abort
end program a
Go to most recent revision | Compare with Previous | Blame | View Log