repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Break circular dependency between FIR dialect and utilities
[llvm-project.git]
/
flang
/
test
/
Semantics
/
symbol08.f90
blob
61dab798955c55b3bc5fddfa635549353d85d72c
1
! RUN: %python %S/test_symbols.py %s %flang_fc1
2
!DEF: /main MainProgram
3
program
main
4
!DEF: /main/x POINTER ObjectEntity REAL(4)
5
pointer
::
x
6
!REF: /main/x
7
real
x
8
!DEF: /main/y EXTERNAL, POINTER (Function) ProcEntity REAL(4)
9
pointer
::
y
10
!REF: /main/y
11
procedure
(
real
) ::
y
12
!DEF: /main/z (Implicit) ObjectEntity REAL(4)
13
!REF: /main/y
14
z
=
y
()
15
end program