File: symbol29.f90

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,696 kB
  • sloc: cpp: 7,438,781; ansic: 1,393,871; asm: 1,012,926; python: 241,771; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 8,596; ml: 5,082; perl: 4,730; makefile: 3,591; awk: 3,523; javascript: 2,251; xml: 892; fortran: 672
file content (62 lines) | stat: -rw-r--r-- 2,131 bytes parent folder | download | duplicates (11)
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