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
/
canondo01.f90
blob
50ffa489019e23e21f43eb93cc53b68608c7ff17
1
2
! RUN: %flang_fc1 -fdebug-unparse-with-symbols %s 2>&1 | FileCheck %s
3
! CHECK: end do
4
5
SUBROUTINE
sub00
(
a
,
b
,
n
,
m
)
6
INTEGER
n
,
m
7
REAL
a
(
n
,
m
),
b
(
n
,
m
)
8
9
DO
10
j
=
1
,
m
10
DO
10
i
=
1
,
n
11
g
=
a
(
i
,
j
) -
b
(
i
,
j
)
12
10
PRINT
*,
g
13
END SUBROUTINE
sub00