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/] [alloc_comp_assign_5.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-options "-O2" }! Tests the fix for PR29428, in which the assignment of! a function result would result in the function being! called twice, if it were not a result by reference,! because of a spurious nullify in gfc_trans_scalar_assign.!! Contributed by Paul Thomas <pault@gcc.gnu.org>!program testimplicit nonetype Ainteger, allocatable :: j(:)end type Atype(A):: xinteger :: ctr = 0x = f()if (ctr /= 1) call abort ()containsfunction f()type(A):: fctr = ctr + 1f = A ((/1,2/))end function fend program
