xref: /llvm-project/clang/test/AST/ast-dump-openmp-target-exit-data.c (revision 50542d504dd869fe1241a9cc987b72ead5a56073)
1fdb3d9b8SRoman Lebedev // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s
2fdb3d9b8SRoman Lebedev 
test(int x)3fdb3d9b8SRoman Lebedev void test(int x) {
4fdb3d9b8SRoman Lebedev #pragma omp target exit data map(from \
5fdb3d9b8SRoman Lebedev                                  : x)
6fdb3d9b8SRoman Lebedev }
7fdb3d9b8SRoman Lebedev 
8fdb3d9b8SRoman Lebedev // CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc>
9fdb3d9b8SRoman Lebedev // CHECK: `-FunctionDecl {{.*}} <{{.*}}ast-dump-openmp-target-exit-data.c:3:1, line:6:1> line:3:6 test 'void (int)'
10fdb3d9b8SRoman Lebedev // CHECK-NEXT:   |-ParmVarDecl {{.*}} <col:11, col:15> col:15 used x 'int'
11fdb3d9b8SRoman Lebedev // CHECK-NEXT:   `-CompoundStmt {{.*}} <col:18, line:6:1>
1291f8066dSJoel E. Denny // CHECK-NEXT:     `-OMPTargetExitDataDirective {{.*}} <line:4:1, line:5:38> openmp_standalone_directive
13fdb3d9b8SRoman Lebedev // CHECK-NEXT:       |-OMPMapClause {{.*}} <line:4:30, line:5:37>
14fdb3d9b8SRoman Lebedev // CHECK-NEXT:       | `-DeclRefExpr {{.*}} <col:36> 'int' lvalue ParmVar {{.*}} 'x' 'int'
1591f8066dSJoel E. Denny // CHECK-NEXT:       `-CapturedStmt {{.*}} <line:4:1>
16fdb3d9b8SRoman Lebedev // CHECK-NEXT:         `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow
1791f8066dSJoel E. Denny // CHECK-NEXT:           |-CompoundStmt {{.*}} <col:1>
18fdb3d9b8SRoman Lebedev // CHECK-NEXT:           |-AlwaysInlineAttr {{.*}} <<invalid sloc>> Implicit __forceinline
1991f8066dSJoel E. Denny // CHECK-NEXT:           |-ImplicitParamDecl {{.*}} <col:1> col:1 implicit .global_tid. 'const int'
2091f8066dSJoel E. Denny // CHECK-NEXT:           |-ImplicitParamDecl {{.*}} <col:1> col:1 implicit .part_id. 'const int *const restrict'
2191f8066dSJoel E. Denny // CHECK-NEXT:           |-ImplicitParamDecl {{.*}} <col:1> col:1 implicit .privates. 'void *const restrict'
2291f8066dSJoel E. Denny // CHECK-NEXT:           |-ImplicitParamDecl {{.*}} <col:1> col:1 implicit .copy_fn. 'void (*const restrict)(void *const restrict, ...)'
2391f8066dSJoel E. Denny // CHECK-NEXT:           |-ImplicitParamDecl {{.*}} <col:1> col:1 implicit .task_t. 'void *const'
24*50542d50SShafik Yaghmour // CHECK-NEXT:           `-ImplicitParamDecl {{.*}} <col:1> col:1 implicit __context 'struct (unnamed at {{.*}}ast-dump-openmp-target-exit-data.c:4:1) *const restrict'
25