mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 11:35:51 -04:00

only. Added support for -fopenmp-simd option that allows compilation of simd-based constructs without emission of OpenMP runtime calls. llvm-svn: 321560
9 lines
273 B
C
9 lines
273 B
C
// RUN: %clang_cc1 -verify -Wsource-uses-openmp -o - %s
|
|
|
|
// RUN: %clang_cc1 -verify -Wsource-uses-openmp -o - %s
|
|
// SIMD-ONLY0-NOT: {{__kmpc|__tgt}}
|
|
|
|
int a;
|
|
#pragma omp threadprivate(a,b) // expected-warning {{unexpected '#pragma omp ...' in program}}
|
|
#pragma omp parallel
|