brintos

brintos / llvm-project-archived public Read only

0
0
Text · 743 B · 2bd9f55 Raw
15 lines · c
1// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s2 3void test(int i) {4#pragma omp atomic5  ++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>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'15