URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [pr17708.f90] - Rev 154
Compare with Previous | Blame | View Log
! { dg-do run }
program test
j = 0
do 10 i=1,3
if(i == 2) goto 10 ! { dg-warning "jumps to END" }
j = j+1
10 enddo ! { dg-warning "jumps to END" }
if (j/=2) call abort
end