bolt/deps/llvm-18.1.8/flang/test/Parser/continuation-in-conditional-compilation.f

17 lines
294 B
FortranFixed
Raw Normal View History

2025-02-14 19:21:04 +01:00
! RUN: %flang_fc1 -fopenmp -fopenacc -E %s 2>&1 | FileCheck %s
program main
! CHECK: k01=1+1
k01=1+
!$ & 1
! CHECK: !$omp parallel private(k01)
!$omp parallel
!$omp+ private(k01)
!$omp end parallel
! CHECK-NOT: comment
!$omp parallel
!$acc+comment
!$omp end parallel
end