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

Subversion Repositories openrisc

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

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

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do compile }
2
! PR 18883: Fake result variables of non-constant length, with ENTRY
3
function s_to_c(chars)
4
    character, pointer :: chars(:)
5
    character(len=len(chars)) :: s_to_c, s_to_c_2
6
    s_to_c = 'a'
7
    return
8
entry s_to_c_2(chars)
9
    s_to_c_2 = 'b'
10
    return
11
end function s_to_c
12
 
13
program huj
14
 
15
    implicit none
16
    interface
17
        function s_to_c(chars)
18
            character, pointer :: chars(:)
19
            character(len=len(chars)) :: s_to_c
20
        end function s_to_c
21
 
22
        function s_to_c_2(chars)
23
            character, pointer :: chars(:)
24
            character(len=len(chars)) :: s_to_c_2
25
        end function s_to_c_2
26
    end interface
27
 
28
    character, pointer :: c(:)
29
    character(3) :: s
30
 
31
    allocate(c(5))
32
    c = (/"a", "b", "c" /)
33
    s = s_to_c(c)
34
    s = s_to_c_2(c)
35
 
36
end program huj

powered by: WebSVN 2.1.0

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