mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 08:46:08 +00:00

only. Added support for -fopenmp-simd option that allows compilation of simd-based constructs without emission of OpenMP runtime calls. llvm-svn: 321560
18 lines
655 B
C
18 lines
655 B
C
// RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 -o - %s
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-simd -ferror-limit 100 -o - %s
|
|
// SIMD-ONLY0-NOT: {{__kmpc|__tgt}}
|
|
|
|
#pragma omp // expected-error {{expected an OpenMP directive}}
|
|
#pragma omp unknown_directive // expected-error {{expected an OpenMP directive}}
|
|
|
|
void foo() {
|
|
#pragma omp // expected-error {{expected an OpenMP directive}}
|
|
#pragma omp unknown_directive // expected-error {{expected an OpenMP directive}}
|
|
}
|
|
|
|
typedef struct S {
|
|
#pragma omp parallel for private(j) schedule(static) if (tree1->totleaf > 1024) // expected-error {{unexpected OpenMP directive '#pragma omp parallel for'}}
|
|
} St;
|
|
|