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
/
canondo07.f90
blob
894950ddf9698c29d358e5845e67c9af5fbb31fc
1
! Error test -- DO loop uses obsolete loop termination statement
2
! See R1131 and C1131
3
4
! RUN: %flang_fc1 -fdebug-unparse-with-symbols -pedantic %s 2>&1 | FileCheck %s
5
! CHECK: A DO loop should terminate with an END DO or CONTINUE
6
7
program endDo
8
do
10
i
=
1
,
5
9
10
print
*,
"in loop"
10
end program endDo