URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [anint_1.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! Check the fix for PR33568 in which the optional KIND! argument for ANINT, with an array for the first argument! would cause an ICE.!!PROGRAM TestIMPLICIT NONEINTEGER, PARAMETER :: DP=8REAL(DP), DIMENSION(1:3) :: A = (/1.76,2.32,7.66/), BA = ANINT ( A , DP)B = AA = ANINT ( A)if (any (A .ne. B)) call abort ()END PROGRAM Test
