URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [direct_io_8.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! PR 34594 - this used to give runtime errors due to an! end condition.program mainimplicit noneinteger :: iou, i, ir, TEMP_CHANGESi=44ir = -42open(11,file="foo.dat")! Try a direct access read on a formatted sequential rileREAD (11, REC = I, ERR = 99) TEMP_CHANGEScall abort99 continue! Variant 2: ir is ok, but does not jump to 99READ (11, REC = I, IOSTAT = IR, ERR = 98) TEMP_CHANGEScall abort98 continueif(ir == 0) thencall abortend ifclose(11,status="delete")end program main
