@@ -11,34 +11,34 @@ program openmp_parse_if
1111
1212 ! CHECK: OmpSimpleStandaloneDirective -> llvm::omp::Directive = target update
1313 ! CHECK-NEXT: OmpClause -> If -> OmpIfClause
14- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = target update
14+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = target update
1515 ! $omp target update if(target update: cond) to(i)
1616
1717 ! CHECK: OmpSimpleStandaloneDirective -> llvm::omp::Directive = target enter data
1818 ! CHECK: OmpClause -> If -> OmpIfClause
19- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = target enter data
19+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = target enter data
2020 ! $omp target enter data map(to: i) if(target enter data: cond)
2121
2222 ! CHECK: OmpSimpleStandaloneDirective -> llvm::omp::Directive = target exit data
2323 ! CHECK: OmpClause -> If -> OmpIfClause
24- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = target exit data
24+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = target exit data
2525 ! $omp target exit data map(from: i) if(target exit data: cond)
2626
2727 ! CHECK: OmpBlockDirective -> llvm::omp::Directive = target data
2828 ! CHECK: OmpClause -> If -> OmpIfClause
29- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = target data
29+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = target data
3030 ! $omp target data map(tofrom: i) if(target data: cond)
3131 ! $omp end target data
3232
3333 ! CHECK: OmpLoopDirective -> llvm::omp::Directive = target teams distribute parallel do simd
3434 ! CHECK: OmpClause -> If -> OmpIfClause
35- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = target
35+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = target
3636 ! CHECK: OmpClause -> If -> OmpIfClause
37- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = teams
37+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = teams
3838 ! CHECK: OmpClause -> If -> OmpIfClause
39- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = parallel
39+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = parallel
4040 ! CHECK: OmpClause -> If -> OmpIfClause
41- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = simd
41+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = simd
4242 ! $omp target teams distribute parallel do simd if(target: cond) &
4343 ! $omp& if(teams: cond) if(parallel: cond) if(simd: cond)
4444 do i = 1 , 10
@@ -47,13 +47,13 @@ program openmp_parse_if
4747
4848 ! CHECK: OmpBlockDirective -> llvm::omp::Directive = task
4949 ! CHECK-NEXT: OmpClause -> If -> OmpIfClause
50- ! CHECK-NEXT: OmpDirectiveNameModifier -> llvm::omp::Directive = task
50+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = task
5151 ! $omp task if(task: cond)
5252 ! $omp end task
5353
5454 ! CHECK: OmpLoopDirective -> llvm::omp::Directive = taskloop
5555 ! CHECK-NEXT: OmpClause -> If -> OmpIfClause
56- ! CHECK-NEXT: DirectiveNameModifier -> llvm::omp::Directive = taskloop
56+ ! CHECK-NEXT: OmpDirectiveName -> llvm::omp::Directive = taskloop
5757 ! $omp taskloop if(taskloop: cond)
5858 do i = 1 , 10
5959 end do
0 commit comments