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
AMDGPU: Allow f16/bf16 for DS_READ_TR16_B64 gfx950 builtins (#118297)
[llvm-project.git]
/
flang
/
test
/
Semantics
/
label13.f90
blob
8c5a901e280005d1a4f28a10a8ac6ff561acb021
1
! RUN: %flang_fc1 -fdebug-unparse-with-symbols %s 2>&1 | FileCheck %s
2
! CHECK: branch into loop body from outside
3
! CHECK: the loop branched into
4
5
subroutine
s
(
a
)
6
integer
i
7
real
a
(
10
)
8
do
10
i
=
1
,
10
9
if
(
a
(
i
) <
0.0
)
then
10
goto
20
11
end if
12
30
continue
13
a
(
i
) =
1.0
14
10
end do
15
goto
40
16
20
a
(
i
) = -
a
(
i
)
17
goto
30
18
40
continue
19
end subroutine
s