File: symbol19.f90

package info (click to toggle)
llvm-toolchain-16 1%3A16.0.6-15~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,634,792 kB
  • sloc: cpp: 6,179,261; ansic: 1,216,205; asm: 741,319; python: 196,614; objc: 75,325; f90: 49,640; lisp: 32,396; pascal: 12,286; sh: 9,394; perl: 7,442; ml: 5,494; awk: 3,523; makefile: 2,723; javascript: 1,206; xml: 886; fortran: 581; cs: 573
file content (51 lines) | stat: -rw-r--r-- 1,972 bytes parent folder | download | duplicates (19)
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
! RUN: %python %S/test_symbols.py %s %flang_fc1

! Test that a procedure is only implicitly resolved as an intrinsic function
! (resp. subroutine) if this is a function (resp. subroutine)

!DEF: /expect_external (Subroutine) Subprogram
subroutine expect_external
 !DEF: /acos EXTERNAL (Subroutine) ProcEntity
 !DEF: /expect_external/x (Implicit) ObjectEntity REAL(4)
 call acos(x)
 !DEF: /expect_external/i (Implicit) ObjectEntity INTEGER(4)
 !DEF: /system_clock EXTERNAL (Function, Implicit) ProcEntity REAL(4)
 !DEF: /expect_external/icount (Implicit) ObjectEntity INTEGER(4)
 i = system_clock(icount)
end subroutine

!DEF: /expect_intrinsic (Subroutine) Subprogram
subroutine expect_intrinsic
 !DEF: /expect_intrinsic/y (Implicit) ObjectEntity REAL(4)
 !DEF: /expect_intrinsic/acos ELEMENTAL, INTRINSIC, PURE (Function) ProcEntity
 !DEF: /expect_intrinsic/x (Implicit) ObjectEntity REAL(4)
 y = acos(x)
 !DEF: /expect_intrinsic/system_clock INTRINSIC (Subroutine) ProcEntity
 !DEF: /expect_intrinsic/icount (Implicit) ObjectEntity INTEGER(4)
 call system_clock(icount)
end subroutine

! Sanity check that the EXTERNAL attribute is not bypassed by
! implicit intrinsic resolution, even if it otherwise perfectly
! matches an intrinsic call.

!DEF: /expect_external_2 (Subroutine) Subprogram
subroutine expect_external_2
 !DEF: /expect_external_2/matmul EXTERNAL (Function, Implicit) ProcEntity INTEGER(4)
 external :: matmul
 !DEF: /expect_external_2/cpu_time EXTERNAL (Subroutine) ProcEntity
 external :: cpu_time
 !DEF: /expect_external_2/x ObjectEntity REAL(4)
 !DEF: /expect_external_2/y ObjectEntity REAL(4)
 !DEF: /expect_external_2/z ObjectEntity REAL(4)
 !DEF: /expect_external_2/t ObjectEntity REAL(4)
 real x(2,2), y(2), z(2), t
 !REF: /expect_external_2/z
 !REF: /expect_external_2/matmul
 !REF: /expect_external_2/x
 !REF: /expect_external_2/y
 z = matmul(x, y)
 !REF: /expect_external_2/cpu_time
 !REF: /expect_external_2/t
 call cpu_time(t)
end subroutine