blob: 5dd19fc797d52297a7c213aba677e98b13532c94 [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() {
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>
Joel E. Denny91f80662019-05-28 19:27:19 +000011// CHECK-NEXT: `-OMPMasterDirective {{.*}} <line:4:1, col:19>
Alexey Bataev4a7aedb2020-07-06 13:32:11 -040012// CHECK-NEXT: `-NullStmt {{.*}} <line:5:3>