File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -486,8 +486,6 @@ class ParseTreeDumper {
486486 NODE (parser, OmpAdjustArgsClause)
487487 NODE (OmpAdjustArgsClause, OmpAdjustOp)
488488 NODE_ENUM (OmpAdjustArgsClause::OmpAdjustOp, Value)
489- NODE (parser, OmpInteropType)
490- NODE_ENUM (OmpInteropType, Value)
491489 NODE (parser, OmpAppendArgsClause)
492490 NODE (OmpAppendArgsClause, OmpAppendOp)
493491 NODE (parser, OmpLocator)
Original file line number Diff line number Diff line change @@ -4065,12 +4065,6 @@ struct OmpAllocateClause {
40654065 std::tuple<MODIFIERS(), OmpObjectList> t;
40664066};
40674067
4068- // InteropType -> target || targetsync
4069- struct OmpInteropType {
4070- ENUM_CLASS (Value, Target, TargetSync)
4071- WRAPPER_CLASS_BOILERPLATE (OmpInteropType, Value);
4072- };
4073-
40744068struct OmpAppendArgsClause {
40754069 struct OmpAppendOp {
40764070 WRAPPER_CLASS_BOILERPLATE (OmpAppendOp, std::list<OmpInteropType>);
Original file line number Diff line number Diff line change @@ -611,10 +611,6 @@ TYPE_PARSER(sourced(construct<OmpToClause::Modifier>(
611611TYPE_PARSER(sourced(construct<OmpWhenClause::Modifier>( //
612612 Parser<OmpContextSelector>{})))
613613
614- TYPE_PARSER(construct<OmpInteropType>(
615- "TARGETSYNC" >> pure(OmpInteropType::Value::TargetSync) ||
616- "TARGET" >> pure(OmpInteropType::Value::Target)))
617-
618614TYPE_PARSER(construct<OmpAppendArgsClause::OmpAppendOp>(
619615 "INTEROP" >> parenthesized(nonemptyList(Parser<OmpInteropType>{}))))
620616
You can’t perform that action at this time.
0 commit comments