brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.9 KiB · 8729550 Raw
39 lines · c
1// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,omp -fopenmp -fno-openmp-extensions -ferror-limit 100 -o - %s -Wuninitialized2// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,omp -fopenmp -fno-openmp-extensions -ferror-limit 100 -o - -x c++ %s -Wuninitialized3 4// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,omp -fopenmp-simd -fno-openmp-extensions -ferror-limit 100 -o - %s -Wuninitialized5// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,omp -fopenmp-simd -fno-openmp-extensions -ferror-limit 100 -o - -x c++ %s -Wuninitialized6 7// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,ompx -fopenmp -fopenmp-extensions -ferror-limit 100 -o - %s -Wuninitialized8// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,ompx -fopenmp -fopenmp-extensions -ferror-limit 100 -o - -x c++ %s -Wuninitialized9 10// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,ompx -fopenmp-simd -fopenmp-extensions -ferror-limit 100 -o - %s -Wuninitialized11// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify=expected,ompx -fopenmp-simd -fopenmp-extensions -ferror-limit 100 -o - -x c++ %s -Wuninitialized12 13int main(int argc, char **argv) {14 15  int r;16  #pragma omp target exit data // expected-error {{expected at least one 'map' clause for '#pragma omp target exit data'}}17 18  #pragma omp target exit data map(r) // expected-error {{map type must be specified for '#pragma omp target exit data'}}19  #pragma omp target exit data map(tofrom: r) // expected-error {{map type 'tofrom' is not allowed for '#pragma omp target exit data'}}20 21  #pragma omp target exit data map(always, from: r) allocate(r) // expected-error {{unexpected OpenMP clause 'allocate' in directive '#pragma omp target exit data'}}22  #pragma omp target exit data map(delete: r)23  #pragma omp target exit data map(release: r)24  #pragma omp target exit data map(always, alloc: r) // expected-error {{map type 'alloc' is not allowed for '#pragma omp target exit data'}}25  #pragma omp target exit data map(to: r) // expected-error {{map type 'to' is not allowed for '#pragma omp target exit data'}}26 27  // omp-error@+2 {{incorrect map type modifier, expected one of: 'always', 'close', 'mapper'}}28  // ompx-error@+1 {{map type modifier 'ompx_hold' is not allowed for '#pragma omp target exit data'}}29  #pragma omp target exit data map(ompx_hold, from: r)30  // omp-error@+2 {{incorrect map type modifier, expected one of: 'always', 'close', 'mapper'}}31  // ompx-error@+1 {{map type modifier 'ompx_hold' is not allowed for '#pragma omp target exit data'}}32  #pragma omp target exit data map(ompx_hold, release: r)33  // omp-error@+2 {{incorrect map type modifier, expected one of: 'always', 'close', 'mapper'}}34  // ompx-error@+1 {{map type modifier 'ompx_hold' is not allowed for '#pragma omp target exit data'}}35  #pragma omp target exit data map(ompx_hold, delete: r)36 37  return 0;38}39