blob: f47a4db1c741031c7a76c914b1e310d809466822 [file] [log] [blame]
Roman Lebedevfdb3d9b2019-03-20 16:31:47 +00001// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s
2
3void 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>
Joel E. Denny91f80662019-05-28 19:27:19 +000013// CHECK-NEXT: `-OMPParallelDirective {{.*}} <line:4:1, col:21>
Roman Lebedevfdb3d9b2019-03-20 16:31:47 +000014// CHECK-NEXT: `-CapturedStmt {{.*}} <line:5:3, line:7:3>
15// CHECK-NEXT: `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow
Roman Lebedevd5edcb92020-03-12 12:18:01 +030016// CHECK-NEXT: |-CompoundStmt {{.*}} <line:5:3, line:7:3>
Joel E. Denny91f80662019-05-28 19:27:19 +000017// CHECK-NEXT: | `-OMPCancellationPointDirective {{.*}} <line:6:1, col:40> openmp_standalone_directive
18// CHECK-NEXT: |-ImplicitParamDecl {{.*}} <line:4:1> col:1 implicit .global_tid. 'const int *const restrict'
19// CHECK-NEXT: |-ImplicitParamDecl {{.*}} <col:1> col:1 implicit .bound_tid. 'const int *const restrict'
20// CHECK-NEXT: `-ImplicitParamDecl {{.*}} <col:1> col:1 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-cancellation-point.c:4:1) *const restrict'