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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [assignment_1.f90] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 149 jeremybenn
! { dg-do run }
2
! { dg-options -Wsurprising }
3
integer, pointer :: p
4
integer, target :: t, s
5
 
6
! The tests for character pointers are currently commented out,
7
! because they don't yet work correctly.
8
! This is PR 17192
9
!!$character*5, pointer :: d
10
!!$character*5, target :: c, e
11
 
12
t = 1
13
p => s
14
! We didn't dereference the pointer in the following line.
15
p = f() ! { dg-warning "POINTER valued function" "" }
16
p = p+1
17
if (p.ne.2) call abort()
18
if (p.ne.s) call abort()
19
 
20
!!$! verify that we also dereference correctly the result of a function
21
!!$! which returns its result by reference
22
!!$c = "Hallo"
23
!!$d => e
24
!!$d = g() !  dg-warning "POINTER valued function" ""
25
!!$if (d.ne."Hallo") call abort()
26
 
27
contains
28
function f()
29
integer, pointer :: f
30
f => t
31
end function f
32
!!$function g()
33
!!$character, pointer :: g
34
!!$g => c
35
!!$end function g
36
end

powered by: WebSVN 2.1.0

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