URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [bound_5.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }!! PR fortran/38859! Wrong bounds simplification!! Contributed by Dick Hendrickson <dick.hendrickson@gmail.com>type xinteger Iend type xtype (x) A(0:5, 2:8)integer ida(2)ida = lbound(a)if (any(ida /= (/0,2/))) call abortida = lbound(a%i)if (any(ida /= (/1,1/))) call abortida = ubound(a)if (any(ida /= (/5,8/))) call abortida = ubound(a%i)if (any(ida /= (/6,7/))) call abortend
