File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -1384,6 +1384,20 @@ class AccVisitor : public virtual DeclarationVisitor {
13841384 void Post (const parser::AccEndBlockDirective &) {
13851385 messageHandler ().set_currStmtSource (std::nullopt );
13861386 }
1387+ bool Pre (const parser::AccBeginCombinedDirective &x) {
1388+ AddAccSourceRange (x.source );
1389+ return true ;
1390+ }
1391+ void Post (const parser::AccBeginCombinedDirective &) {
1392+ messageHandler ().set_currStmtSource (std::nullopt );
1393+ }
1394+ bool Pre (const parser::AccEndCombinedDirective &x) {
1395+ AddAccSourceRange (x.source );
1396+ return true ;
1397+ }
1398+ void Post (const parser::AccEndCombinedDirective &) {
1399+ messageHandler ().set_currStmtSource (std::nullopt );
1400+ }
13871401 bool Pre (const parser::AccBeginLoopDirective &x) {
13881402 AddAccSourceRange (x.source );
13891403 return true ;
You can’t perform that action at this time.
0 commit comments