blob: 190abbc07e1e50bb169b11496be3aae2ec0302af [file] [log] [blame]
Gheorghe-Teodor Bercea411a6242019-04-18 19:53:43 +00001// RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 %s
2
3void 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}}