File tree Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,6 @@ struct NodeVisitor {
485
485
READ_FEATURE (OmpLinearClause::Modifier)
486
486
READ_FEATURE (OmpLinearModifier)
487
487
READ_FEATURE (OmpLinearModifier::Value)
488
- READ_FEATURE (OmpLoopDirective)
489
488
READ_FEATURE (OmpMapClause)
490
489
READ_FEATURE (OmpMapClause::Modifier)
491
490
READ_FEATURE (OmpNumTasksClause)
Original file line number Diff line number Diff line change @@ -615,7 +615,6 @@ class ParseTreeDumper {
615
615
NODE_ENUM (OmpLinearModifier, Value)
616
616
NODE (parser, OmpLocator)
617
617
NODE (parser, OmpLocatorList)
618
- NODE (parser, OmpLoopDirective)
619
618
NODE (parser, OmpMapClause)
620
619
NODE (OmpMapClause, Modifier)
621
620
NODE (parser, OmpMapper)
Original file line number Diff line number Diff line change @@ -5075,12 +5075,6 @@ struct OpenMPAtomicConstruct : public OmpBlockConstruct {
5075
5075
mutable Analysis analysis;
5076
5076
};
5077
5077
5078
- // OpenMP directives that associate with loop(s)
5079
- struct OmpLoopDirective {
5080
- WRAPPER_CLASS_BOILERPLATE (OmpLoopDirective, llvm::omp::Directive);
5081
- CharBlock source;
5082
- };
5083
-
5084
5078
// 2.14.2 cancellation-point -> CANCELLATION POINT construct-type-clause
5085
5079
struct OpenMPCancellationPointConstruct {
5086
5080
WRAPPER_CLASS_BOILERPLATE (
Original file line number Diff line number Diff line change @@ -679,10 +679,6 @@ template <typename Checker> struct DirectiveSpellingVisitor {
679
679
checker_ (x.DirName ().source , x.DirId ());
680
680
return false ;
681
681
}
682
- bool Pre (const parser::OmpLoopDirective &x) {
683
- checker_ (x.source , x.v );
684
- return false ;
685
- }
686
682
687
683
bool Pre (const parser::OmpDirectiveSpecification &x) {
688
684
auto &name = std::get<parser::OmpDirectiveName>(x.t );
You can’t perform that action at this time.
0 commit comments