mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
a8a9153a37
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}}
|
|
}
|
|
};
|