<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/89559>89559</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
[Flang][OpenMP] Compilation error when continuation lines of OpenMP (free source form conditional compilation sentinel) and Fortran `free source form` are mixed
</td>
</tr>
<tr>
<th>Labels</th>
<td>
openmp,
flang
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
ohno-fj
</td>
</tr>
</table>
<pre>
```
Version of flang-new : 19.0.0(4f19f15a601a5761b12c9c66d99d97dbc89ef90d)/AArch64
```
When the following `free form statement continuation` are mixed, a compilation error occurs.
- Continuation line of OpenMP (`free source form conditional compilation sentinel`)
- Continuation line of Fortran `free source form`
When there is no mixing, a compilation terminates normally.
The following are the test program, Flang-new, Gfortran and ifort compilation/execution result.
ompc_066_.f90:
```fortran
program main
!$ i = 0
i = 1&
!$ +10 &
!$+100&
!$&+ 1000&
&+ 10000&
!$& +100000&
& +1000000
if(i .eq. 1111111) then
print *, 'OK'
else
print *, 'NG'
endif
end program main
```
```
$ flang-new -fopenmp ompc_066_.f90
error: Could not scan ompc_066_.f90
./ompc_066_.f90:3:7: error: bad character ('&') in Fortran token
i = 1&
^
./ompc_066_.f90:6:10: error: bad character ('&') in Fortran token
!$&+ 1000&
^
./ompc_066_.f90:7:2: error: bad character ('&') in Fortran token
&+ 10000&
^
./ompc_066_.f90:7:10: error: bad character ('&') in Fortran token
&+ 10000&
^
./ompc_066_.f90:8:3: error: bad character ('&') in Fortran token
!$& +100000&
^
./ompc_066_.f90:8:12: error: bad character ('&') in Fortran token
!$& +100000&
^
$
```
```
$ gfortran -fopenmp ompc_066_.f90; ./a.out
OK
$
```
```
$ ifort -qopenmp -diag-disable=10448 ompc_066_.f90; ./a.out
OK
$
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJysVs2S2zYMfhr4grGGhP4PPnjXdQ6ZNj102mOGoiibqUQ6JNUkb9-hpN21vd5N06zGY5sgiA_4QAgQ3uuDUWoD-R3ku5UYw9G6jT0au-4-rRrbfttAwZYP2wHb_qmc19ag7bDrhTmsjfqCkG6R1wlLGFCVdbzueC4KxkVeFrzhJGtZFG1dt3XZNrKqVVezFqgG2m-3Th6LbDZ-hTV__3VUBsNRYWf73n7R5oBQsM6pKHED-iCCGpQJKK0J2owiaGugYCicwkF_VS3QPQqUdjjpftpF5Zx1aKUcnU9mnDXen53HXhsVo_xwUubX3xGoekD1dnRyAZfWtDrqi_7CvlfRlOpjLFS_CrC3Ljhh8Ib5F5hwCrVHY2Nw2hyeRxeUG7QRQUUtN4i-_5acG_rjgs1IU-Q3KB_w5OzBiSHa3D_kNy7edYubwrSo4-IcEWivvio5TuhO-bEPF4B2OMmPrCg-Jl3NIN1epXuxPUsXD3AQepEAcaAMNUK6w4WRZcWBikWAuOgB3XGGjxuzdBKyZ8IC6A45O9vBM-EN_dk6uz7xJL7ImO6AKo2J-pwgnx-gOrJtHrw-OW0CAm0jy0Dlh_dA5bypeq9eUvvt3ZOaaXX3-Bdv8HerrK6FlJ0V9LqzJ2WGE14mbsaIpRMr_t6OfYvGBvRSmFuqCdD-OvUppNsyHn-004gW5VE4IYNyU6FROSWhjFxp81ghwf79xNutCzA9kP_yMnoB6ZazN4B_7QK95kAMnX4e_-Yl_V7w5VsF_yL8f8pBtdyCN0vBzZr8ngf8TbLwigd4i4-o_kM1eXh4775QkukdxghFYsewAH94_z-x5tf6-vMCtG61OKxb7UXTK0h3nGVZ9fPwq3aTtnVai5Xa8JKnZVYXBVsdNywrZZXytOFVSSTSSsoqlzWrVJ7WVc5WekOMMpYRMZ5mvExIKV7yRqkmZ7Usc8iYGoTuk77_Z0isO6y096PaVHWe16teNKr306xDNMcIRED3QDS9-uIq363cJh5fN-PBQ8Z67YN_Mhh06Kd5aeqOkO8gv5tHBMh3eP9sxPgSe7a87vv-crL48bGC6qkRvz47PA1Aq9H1m2MIJx-bL-2B9gcdjmOTSDsA7WN4y8_65OwnJQPQfiLPA-0n_v4NAAD___8i1vk">