URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [coarray_21.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! { dg-options "-fcoarray=single" }
!
! PR fortran/18918
!
! Before scalar coarrays weren't regarded as scalar in the ME.
!
module mod_reduction
real :: g[*]
contains
subroutine caf_reduce(x)
real, intent(in) :: x
g = x ! << used to ICE
end
end module
program test
integer, parameter :: size = 4000
type :: pct
integer, allocatable :: data(:,:)
end type
type(pct) :: picture[*]
allocate(picture%data(size, size))
end program test
! { dg-final { cleanup-modules "mod_reduction" } }
Go to most recent revision | Compare with Previous | Blame | View Log