Files
clang-p2996/flang/test/Semantics/canondo19.f90
Richard Barton b537c81b5f [flang] Port remaining test_any.sh tests to FileCheck
Port the remaining tests which only require mechanical changes and delete
test_any.sh.

    * Delete old RUN lines
    * Replace:
        EXEC: ${F18} ... | ${FileCheck} ...
      with
        RUN: %f18 .. | FileCheck ...
    * Prepend RUN line with not when it is expected to fail

Also reinstate a de-activated EXEC line and port it in the same way.

Differential Revision: https://reviews.llvm.org/D82168
2020-06-26 19:35:14 +01:00

29 lines
602 B
Fortran

! Check that if there is a label or a name on an label-do-stmt,
! then it is not lost when rewriting it to an non-label-do-stmt.
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>&1 | FileCheck %s
! CHECK: end do
! CHECK: 2 do
! CHECK: mainloop: do
! CHECK: end do mainloop
! CHECK-NOT: do [1-9]
subroutine foo()
do 1 i=1,2
goto 2
1 continue
2 do 3 i=1,2
3 continue
mainloop : do 4 i=1,100
do j=1,20
if (j==i) then
! cycle mainloop: TODO: fix invalid complaints that mainloop construct
! is not in scope.
end if
end do
4 end do mainloop
end subroutine