• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s
2 
test()3 void test() {
4 #pragma omp master
5   ;
6 }
7 
8 // CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc>
9 // CHECK: `-FunctionDecl {{.*}} <{{.*}}ast-dump-openmp-master.c:3:1, line:6:1> line:3:6 test 'void ()'
10 // CHECK-NEXT:   `-CompoundStmt {{.*}} <col:13, line:6:1>
11 // CHECK-NEXT:     `-OMPMasterDirective {{.*}} <line:4:1, col:19>
12 // CHECK-NEXT:       `-NullStmt {{.*}} <line:5:3>
13