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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [entry_12.f90] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run }
2
! Tests the fix for pr31609, where module procedure entries found
3
! themselves in the wrong namespace.  This test checks that all
4
! combinations of generic and specific calls work correctly.
5
!
6
! Contributed by Paul Thomas  as comment #8 to the pr.
7
!
8
MODULE ksbin1_aux_mod
9
  interface foo
10
    module procedure j
11
  end interface
12
  interface bar
13
    module procedure k
14
  end interface
15
  interface foobar
16
    module procedure j, k
17
  end interface
18
  CONTAINS
19
    FUNCTION j ()
20
    j = 1
21
    return
22
    ENTRY k (i)
23
    k = 2
24
    END FUNCTION j
25
END MODULE ksbin1_aux_mod
26
 
27
    use ksbin1_aux_mod
28
    if (any ((/foo (), bar (99), foobar (), foobar (99), j (), k (99)/) .ne. &
29
             (/1, 2, 1, 2, 1, 2/))) Call abort ()
30
end
31
! { dg-final { cleanup-modules "ksbin1_aux_mod" } }

powered by: WebSVN 2.1.0

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