1 ! RUN: %flang_fc1 -fopenmp -E %s 2>&1 | FileCheck %s --check-prefix=CHECK-OMP
2 ! RUN: %flang_fc1 -E %s 2>&1 | FileCheck %s
5 ! Test in mixed way, i.e., combination of Fortran free source form
6 ! and free source form with conditional compilation sentinel.
7 ! CHECK-LABEL: subroutine mixed_form1()
8 ! CHECK-OMP: i = 1 +100+ 1000+ 10 + 1 +1000000000 + 1000000
9 ! CHECK: i = 1 + 10 + 10000 + 1000000
10 subroutine mixed_form1()
20 ! Testing continuation lines in only Fortran Free form Source
21 ! CHECK-LABEL: subroutine mixed_form2()
22 ! CHECK-OMP: i = 1 +10 +100 + 1000 + 10000
23 ! CHECK: i = 1 +10 +100 + 1000 + 10000
24 subroutine mixed_form2()
33 ! Testing continuation line in only free source form conditional compilation sentinel.
34 ! CHECK-LABEL: subroutine mixed_form3()
36 ! CHECK-OMP: i = 1 +10 +100+1000
37 subroutine mixed_form3()