* config.gcc: Remove MASK_JUMP_IN_DELAY from target_cpu_default2.
[official-gcc.git] / gcc / testsuite / gfortran.dg / coarray_poly_5.f90
blob29c9c8c314078a8b2b2d4256c5daeb411c4c2852
1 ! { dg-do compile }
2 ! { dg-options "-fcoarray=lib -fdump-tree-original" }
4 subroutine test(x)
5 type t
6 real, allocatable :: x[:]
7 end type t
9 class(t) :: x
10 allocate(x%x[*])
11 end subroutine test
13 ! { dg-final { scan-tree-dump-times "x->_data->x.data = _gfortran_caf_register \\(4, 1, &x->_data->x.token, 0B, 0B, 0\\);" 1 "original" } }
14 ! { dg-final { cleanup-tree-dump "original" } }