URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [array_memcpy_1.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-O2 -fdump-tree-original" }subroutine testi(a,b)integer :: a(20)integer :: b(20)a = b;end subroutinesubroutine testr(a,b)real :: a(20)real :: b(20)a = b;end subroutinesubroutine testz(a,b)complex :: a(20)complex :: b(20)a = b;end subroutinesubroutine testl(a,b)logical :: a(20)logical :: b(20)a = b;end subroutine! { dg-final { scan-tree-dump-times "memcpy" 4 "original" } }! { dg-final { cleanup-tree-dump "original" } }
