URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [write_logical.f90] - Rev 695
Compare with Previous | Blame | View Log
! PR 14334, L edit descriptor does not work!! this test uses L1 and L4 to print TRUE and FALSElogical true,falsecharacter*10 btrue = .TRUE.false = .FALSE.b = ''write (b, '(L1)') trueif (b(1:1) .ne. 'T') call abortb = ''write (b, '(L1)') falseif (b(1:1) .ne. 'F') call abortb = ''write(b, '(L4)') trueif (b(1:4) .ne. ' T') call abortb = ''write(b, '(L4)') falseif (b(1:4) .ne. ' F') call abortend
