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

Subversion Repositories openrisc

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

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do run }
2
!
3
! PR 40176:  Fortran 2003: Procedure pointers with array return value
4
!
5
! Original test case by Barron Bichon 
6
! Modified by Janus Weil 
7
 
8
PROGRAM test_prog
9
 
10
 TYPE ProcPointerType
11
   PROCEDURE(triple), POINTER, NOPASS :: f
12
 END TYPE ProcPointerType
13
 
14
 TYPE (ProcPointerType) :: ppt
15
 PROCEDURE(triple), POINTER :: f
16
 REAL :: tres(2)
17
 
18
 ppt%f => triple
19
 f => ppt%f
20
 tres = f(2,[2.,4.])
21
 if (abs(tres(1)-6.)>1E-3) call abort()
22
 if (abs(tres(2)-12.)>1E-3) call abort()
23
 tres = ppt%f(2,[3.,5.])
24
 if (abs(tres(1)-9.)>1E-3) call abort()
25
 if (abs(tres(2)-15.)>1E-3) call abort()
26
 
27
CONTAINS
28
 
29
 FUNCTION triple(n,x) RESULT(tre)
30
   INTEGER, INTENT(in) :: n
31
   REAL, INTENT(in) :: x(2)
32
   REAL :: tre(2)
33
   tre = 3.*x
34
 END FUNCTION triple
35
 
36
END PROGRAM test_prog
37
 

powered by: WebSVN 2.1.0

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