blob: ef65d98fed9c017bed921926d54521c7e8cee1b5 [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;
Gheorghe-Teodor Berceae94e0eb2019-04-18 20:34:43 +00005 #pragma omp target // expected-note 4 {{target previously encountered here}}
Gheorghe-Teodor Bercea411a6242019-04-18 19:53:43 +00006 {
7 a = a + 1;
8 }
9}
10
11#pragma omp requires atomic_default_mem_order(seq_cst)
Gheorghe-Teodor Berceae94e0eb2019-04-18 20:34:43 +000012#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}}