File: symbol29.f90

package info (click to toggle)
llvm-toolchain-18 1%3A18.1.8-18
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,908,340 kB
  • sloc: cpp: 6,667,937; ansic: 1,440,452; asm: 883,619; python: 230,549; objc: 76,880; f90: 74,238; lisp: 35,989; pascal: 16,571; sh: 10,229; perl: 7,459; ml: 5,047; awk: 3,523; makefile: 2,987; javascript: 2,149; xml: 892; fortran: 649; cs: 573
file content (62 lines) | stat: -rw-r--r-- 2,131 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
! RUN: %python %S/test_symbols.py %s %flang_fc1
! References to generic functions with forward-referenced specifics.
!DEF: /m Module
module m
contains
 !DEF: /m/specific4 PUBLIC (Function) Subprogram INTEGER(4)
 !DEF: /m/specific4/x INTENT(IN) ObjectEntity INTEGER(4)
 integer function specific4(x)
  !REF: /m/specific4/x
  integer, intent(in) :: x(*)
 end function
 !DEF: /m/test PUBLIC (Subroutine) Subprogram
 !DEF: /m/test/specific1 EXTERNAL (Function) Subprogram INTEGER(4)
 subroutine test (specific1)
  !DEF: /m/test/generic (Function) Generic
  interface generic
   !REF: /m/test/specific1
   procedure :: specific1
   !DEF: /m/test/specific2 EXTERNAL, PURE (Function) Subprogram INTEGER(4)
   procedure :: specific2
   !DEF: /m/test/specific3 EXTERNAL (Function) Subprogram INTEGER(4)
   procedure :: specific3
   !DEF: /m/test/specific4 EXTERNAL (Function) Subprogram INTEGER(4)
   procedure :: specific4
  end interface
  interface
   !REF: /m/test/specific1
   !DEF: /m/test/specific1/x INTENT(IN) ObjectEntity INTEGER(4)
   integer function specific1(x)
    !REF: /m/test/specific1/x
    integer, intent(in) :: x
   end function
   !REF: /m/test/specific2
   !DEF: /m/test/specific2/x INTENT(IN) ObjectEntity INTEGER(4)
   !DEF: /m/test/specific2/y INTENT(IN) ObjectEntity INTEGER(4)
   pure integer function specific2(x, y)
    !REF: /m/test/specific2/x
    !REF: /m/test/specific2/y
    integer, intent(in) :: x, y
   end function
   !REF: /m/test/specific3
   !DEF: /m/test/specific3/x INTENT(IN) ObjectEntity INTEGER(4)
   !DEF: /m/test/specific3/y INTENT(IN) ObjectEntity INTEGER(4)
   integer function specific3(x, y)
    !REF: /m/test/generic
    import :: generic
    !REF: /m/test/specific3/x
    !REF: /m/test/specific3/y
    !REF: /m/test/specific2
    integer, intent(in) :: x, y(generic(1, x))
   end function
   !REF: /m/test/specific4
   !DEF: /m/test/specific4/x INTENT(IN) ObjectEntity INTEGER(4)
   integer function specific4(x)
    !REF: /m/test/specific4/x
    integer, intent(in) :: x(:)
   end function
  end interface
  !REF: /m/test/specific4
  print *, generic([1])
 end subroutine
end module