1 // RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=45 -ast-print %s | FileCheck %s
2 // RUN: %clang_cc1 -fopenmp -fopenmp-version=45 -x c++ -std=c++11 -emit-pch -o %t %s
3 // RUN: %clang_cc1 -fopenmp -fopenmp-version=45 -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
5 // RUN: %clang_cc1 -verify -fopenmp-simd -fopenmp-version=45 -ast-print %s | FileCheck %s
6 // RUN: %clang_cc1 -fopenmp-simd -fopenmp-version=45 -x c++ -std=c++11 -emit-pch -o %t %s
7 // RUN: %clang_cc1 -fopenmp-simd -fopenmp-version=45 -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
9 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s
10 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s
11 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
13 // RUN: %clang_cc1 -verify -fopenmp-simd -ast-print %s | FileCheck %s
14 // RUN: %clang_cc1 -fopenmp-simd -x c++ -std=c++11 -emit-pch -o %t %s
15 // RUN: %clang_cc1 -fopenmp-simd -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
17 // expected-no-diagnostics
22 int main (int argc
, char **argv
) {
23 // CHECK: int main(int argc, char **argv) {
26 #pragma omp cancel parallel if(argc)
28 // CHECK: #pragma omp parallel
30 // CHECK-NEXT: #pragma omp cancel parallel if(argc)
34 #pragma omp cancel sections
36 // CHECK-NEXT: #pragma omp sections
38 // CHECK: #pragma omp cancel sections{{$}}
41 for (int i
= 0; i
< argc
; ++i
) {
42 #pragma omp cancel for if(cancel:argc)
44 // CHECK: #pragma omp for
45 // CHECK-NEXT: for (int i = 0; i < argc; ++i) {
46 // CHECK-NEXT: #pragma omp cancel for if(cancel: argc)
50 #pragma omp cancel taskgroup
52 // CHECK: #pragma omp task
54 // CHECK: #pragma omp cancel taskgroup
56 // CHECK: return argc;