[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / AST / ast-dump-openmp-atomic.c
blob2bd9f558b749a46f921e2a886ace4171b3335fae
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s
3 void test(int i) {
4 #pragma omp atomic
5 ++i;
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>
12 // CHECK-NEXT: `-OMPAtomicDirective {{.*}} <line:4:1, col:19>
13 // CHECK-NEXT: `-UnaryOperator {{.*}} <line:5:3, col:5> 'int' prefix '++'
14 // CHECK-NEXT: `-DeclRefExpr {{.*}} <col:5> 'int' lvalue ParmVar {{.*}} 'i' 'int'