blob: 53d33064238558cdf463692b3da9f9fe38050476 [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(int i) {
4#pragma omp atomic
5 ++i;
6}
7
8// CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc>
9// CHECK: `-FunctionDecl {{.*}} <{{.*}}ast-dump-openmp-atomic.c:3:1, line:6:1> line:3:6 test 'void (int)'
10// CHECK-NEXT: |-ParmVarDecl {{.*}} <col:11, col:15> col:15 used i 'int'
11// CHECK-NEXT: `-CompoundStmt {{.*}} <col:18, line:6:1>
Joel E. Denny91f80662019-05-28 19:27:19 +000012// CHECK-NEXT: `-OMPAtomicDirective {{.*}} <line:4:1, col:19>
Roman Lebedevfdb3d9b2019-03-20 16:31:47 +000013// CHECK-NEXT: `-CapturedStmt {{.*}} <line:5:3, col:5>
14// CHECK-NEXT: |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc>
Roman Lebedevd5edcb92020-03-12 12:18:01 +030015// CHECK-NEXT: | |-UnaryOperator {{.*}} <col:3, col:5> 'int' prefix '++'
Roman Lebedevfdb3d9b2019-03-20 16:31:47 +000016// CHECK-NEXT: | | `-DeclRefExpr {{.*}} <col:5> 'int' lvalue ParmVar {{.*}} 'i' 'int'
Joel E. Denny91f80662019-05-28 19:27:19 +000017// CHECK-NEXT: | `-ImplicitParamDecl {{.*}} <line:4:1> col:1 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-atomic.c:4:1) *const restrict'
Roman Lebedevfdb3d9b2019-03-20 16:31:47 +000018// CHECK-NEXT: `-DeclRefExpr {{.*}} <line:5:5> 'int' lvalue ParmVar {{.*}} 'i' 'int'