
I broke fixed-form line continuation (without !$) for OpenMP !$ conditional compilation lines. Fix it.
9 lines
144 B
Fortran
9 lines
144 B
Fortran
! RUN: not %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
|
|
do i = 1,10
|
|
! CHECK: Unmatched '('
|
|
if (i != 0) then
|
|
exit
|
|
endif
|
|
enddo
|
|
end
|