URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [dependency_26.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-fdump-tree-original" }!! Test the fix for PR36932 and PR36933, in which unnecessary! temporaries were being generated. The module m2 tests the! additional testcase in comment #3 of PR36932.!! Contributed by Joost VandeVondele <jv244@cam.ac.uk>!MODULE M2IMPLICIT NONETYPE particleREAL :: r(3)END TYPECONTAINSSUBROUTINE S1(p)TYPE(particle), POINTER, DIMENSION(:) :: pREAL :: b(3)INTEGER :: ib=pbc(p(i)%r)END SUBROUTINE S1FUNCTION pbc(b)REAL :: b(3)REAL :: pbc(3)pbc=bEND FUNCTIONEND MODULE M2MODULE M1IMPLICIT NONETYPE cell_typeREAL :: h(3,3)END TYPECONTAINSSUBROUTINE S1(cell)TYPE(cell_type), POINTER :: cellREAL :: a(3)REAL :: b(3) = [1, 2, 3]a=MATMUL(cell%h,b)if (ANY (INT (a) .ne. [30, 36, 42])) call abortEND SUBROUTINE S1END MODULE M1use M1TYPE(cell_type), POINTER :: cellallocate (cell)cell%h = reshape ([(real(i), i = 1, 9)], [3, 3])call s1 (cell)end! { dg-final { cleanup-modules "m1 m2" } }! { dg-final { scan-tree-dump-times "&a" 1 "original" } }! { dg-final { scan-tree-dump-times "pack" 0 "original" } }! { dg-final { cleanup-tree-dump "original" } }
