Gheorghe-Teodor Bercea | 411a624 | 2019-04-18 19:53:43 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 %s |
| 2 | |
| 3 | void foo2() { |
| 4 | int a; |
Gheorghe-Teodor Bercea | e94e0eb | 2019-04-18 20:34:43 +0000 | [diff] [blame] | 5 | #pragma omp target // expected-note 4 {{target previously encountered here}} |
Gheorghe-Teodor Bercea | 411a624 | 2019-04-18 19:53:43 +0000 | [diff] [blame] | 6 | { |
| 7 | a = a + 1; |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | #pragma omp requires atomic_default_mem_order(seq_cst) |
Gheorghe-Teodor Bercea | e94e0eb | 2019-04-18 20:34:43 +0000 | [diff] [blame] | 12 | #pragma omp requires unified_address //expected-error {{target region encountered before requires directive with 'unified_address' clause}} |
| 13 | #pragma omp requires unified_shared_memory //expected-error {{target region encountered before requires directive with 'unified_shared_memory' clause}} |
| 14 | #pragma omp requires reverse_offload //expected-error {{target region encountered before requires directive with 'reverse_offload' clause}} |
| 15 | #pragma omp requires dynamic_allocators //expected-error {{target region encountered before requires directive with 'dynamic_allocators' clause}} |