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; |
| 5 | #pragma omp target // expected-note 4 {{Target previously encountered here}} |
| 6 | { |
| 7 | a = a + 1; |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | #pragma omp requires atomic_default_mem_order(seq_cst) |
| 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}} |