URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [array_memcpy_2.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! This checks that the "z = y" assignment is not considered copyable, as the! array is of a derived type containing allocatable components. Hence, we! we should expand the scalarized loop, which contains *two* memcpy calls.! { dg-do compile }! { dg-options "-O2 -fdump-tree-original" }type :: ainteger, allocatable :: i(:)end type atype :: btype (a), allocatable :: at(:)end type btype(b) :: y(2), z(2)z = yend! { dg-final { scan-tree-dump-times "memcpy" 2 "original" } }! { dg-final { cleanup-tree-dump "original" } }
Go to most recent revision | Compare with Previous | Blame | View Log
