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
/
altreturn01.f90
blob
85a133d826764151d90505916ad1c55540dccde5
1
! RUN: %python %S/test_errors.py %s %flang_fc1
2
! Check calls with alt returns
3
4
CALL
TEST
(
N
, *
100
, *
200
)
5
PRINT
*,
'Normal return'
6
STOP
7
100
PRINT
*,
'First alternate return'
8
STOP
9
200
PRINT
*,
'Secondnd alternate return'
10
END