OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [pointer_function_actual_2.f90] - Blame information for rev 694

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do run }
2
! Tests the fix for PR31200, in which the target x would
3
! not be associated with p
4
!
5
! COntributed by Joost VandeVondele 
6
!
7
  REAL,TARGET :: x
8
  CALL s3(f(x))
9
CONTAINS
10
  FUNCTION f(a)
11
    REAL,POINTER :: f
12
    REAL,TARGET :: a
13
    f => a
14
  END FUNCTION
15
  SUBROUTINE s3(targ)
16
    REAL,TARGET :: targ
17
    REAL,POINTER :: p
18
    p => targ
19
    IF (.NOT. ASSOCIATED(p,x)) CALL ABORT()
20
  END SUBROUTINE
21
END
22
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.