URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [alloc_comp_assign_5.f90] - Rev 694
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
