mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 22:00:10 +00:00
9 lines
255 B
C++
9 lines
255 B
C++
|
// RUN: %clang_cc1 -verify -fopenmp %s
|
||
|
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}}
|
||
|
}
|
||
|
};
|