diff options
Diffstat (limited to 'clang/test/OpenMP/allocate_allocator_messages.cpp')
-rw-r--r-- | clang/test/OpenMP/allocate_allocator_messages.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/clang/test/OpenMP/allocate_allocator_messages.cpp b/clang/test/OpenMP/allocate_allocator_messages.cpp new file mode 100644 index 00000000000..0f616dfb7e0 --- /dev/null +++ b/clang/test/OpenMP/allocate_allocator_messages.cpp @@ -0,0 +1,27 @@ +// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp -ferror-limit 100 -o - %s + +// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp-simd -ferror-limit 100 -o - %s + +struct St{ + int a; +}; + +int sss; +#pragma omp allocate(sss) allocate // expected-warning {{extra tokens at the end of '#pragma omp allocate' are ignored}} +#pragma omp allocate(sss) allocator // expected-error {{expected '(' after 'allocator'}} +#pragma omp allocate(sss) allocator(0, // expected-error {{expected ')'}} expected-error {{omp_allocator_handle_t type not found; include <omp.h>}} expected-note {{to match this '('}} +#pragma omp allocate(sss) allocator(0,sss // expected-error {{expected ')'}} expected-error {{omp_allocator_handle_t type not found; include <omp.h>}} expected-note {{to match this '('}} +#pragma omp allocate(sss) allocator(0,sss) // expected-error {{expected ')'}} expected-error {{omp_allocator_handle_t type not found; include <omp.h>}} expected-note {{to match this '('}} +#pragma omp allocate(sss) allocator(sss) // expected-error {{omp_allocator_handle_t type not found; include <omp.h>}} + +typedef void *omp_allocator_handle_t; + +struct St1{ + int a; + static int b; +#pragma omp allocate(b) allocator(sss) // expected-error {{initializing 'omp_allocator_handle_t' (aka 'void *') with an expression of incompatible type 'int'}} +} d; + +#pragma omp allocate(d) allocator(nullptr) +extern void *allocator; +#pragma omp allocate(d) allocator(allocator) |