mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 11:26: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
12 lines
336 B
C++
12 lines
336 B
C++
// RUN: %clang_cc1 -verify -fopenmp %s
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-simd %s
|
|
// SIMD-ONLY0-NOT: {{__kmpc|__tgt}}
|
|
void f(int a, ...) {
|
|
#pragma omp parallel for
|
|
for (int i = 0; i < 100; ++i) {
|
|
__builtin_va_list ap;
|
|
__builtin_va_start(ap, a); // expected-error {{'va_start' cannot be used in a captured statement}}
|
|
}
|
|
};
|