1 | // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s |
2 | |
3 | void test() { |
4 | #pragma omp parallel |
5 | { |
6 | #pragma omp cancellation point parallel |
7 | } |
8 | } |
9 | |
10 | // CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc> |
11 | // CHECK: `-FunctionDecl {{.*}} <{{.*}}ast-dump-openmp-cancellation-point.c:3:1, line:8:1> line:3:6 test 'void ()' |
12 | // CHECK-NEXT: `-CompoundStmt {{.*}} <col:13, line:8:1> |
13 | // CHECK-NEXT: `-OMPParallelDirective {{.*}} <line:4:9, col:21> |
14 | // CHECK-NEXT: `-CapturedStmt {{.*}} <line:5:3, line:7:3> |
15 | // CHECK-NEXT: `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow |
16 | // CHECK-NEXT: |-CompoundStmt {{.*}} <line:5:3, line:7:3> openmp_structured_block |
17 | // CHECK-NEXT: | `-OMPCancellationPointDirective {{.*}} <line:6:9, col:40> openmp_standalone_directive |
18 | // CHECK-NEXT: |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit .global_tid. 'const int *const restrict' |
19 | // CHECK-NEXT: |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' |
20 | // CHECK-NEXT: `-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-cancellation-point.c:4:9) *const restrict' |
21 | |