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 {
1384
1384
void Post (const parser::AccEndBlockDirective &) {
1385
1385
messageHandler ().set_currStmtSource (std::nullopt);
1386
1386
}
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
+ }
1387
1401
bool Pre (const parser::AccBeginLoopDirective &x) {
1388
1402
AddAccSourceRange (x.source );
1389
1403
return true ;
You can’t perform that action at this time.
0 commit comments