URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [test_slice.f90] - Rev 695
Compare with Previous | Blame | View Log
! Program to test handling of reduced rank array sections. This uncovered! bugs in simplify_shape and the scalarization of array sections.program test_sliceimplicit nonereal (kind = 8), dimension(2, 2, 2) :: xreal (kind = 8) :: min, maxx = 1.0if (minval(x(1, 1:2, 1:1)) .ne. 1.0) call abort ()if (maxval(x(1, 1:2, 1:1)) .ne. 1.0) call abort ()if (any (shape(x(1, 1:2, 1:1)) .ne. (/2, 1/))) call abort ()if (any (shape(x(1, 1:2, 1)) .ne. (/2/))) call abort ()if (any (shape(x(1:1, 1:2, 1:1)) .ne. (/1, 2, 1/))) call abort ()end program test_slice
