[clang][bytecode] Implement __builtin_reduce_mul (#118287)
[llvm-project.git] / flang / test / Driver / fno-openmp.f90
blob98c8793c8c9bcefcec59fc3c861690932845a278
1 ! RUN: %flang_fc1 -fopenmp -fno-openmp %s -emit-hlfir -o - | FileCheck --check-prefix=CHECK-NO-OMP %s
2 ! RUN: %flang_fc1 -fno-openmp %s -emit-hlfir -o - | FileCheck --check-prefix=CHECK-NO-OMP %s
3 ! RUN: %flang_fc1 -fno-openmp -fopenmp %s -emit-hlfir -o - | FileCheck --check-prefix=CHECK-OMP %s
4 ! RUN: %flang_fc1 -fopenmp %s -emit-hlfir -o - | FileCheck --check-prefix=CHECK-OMP %s
6 subroutine main
7 ! CHECK-NO-OMP-NOT: omp.parallel
8 ! CHECK-OMP: omp.parallel
9 !$omp parallel
10 print *,"test"
11 !$omp end parallel
12 end subroutine