We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa026c commit 7c2a3beCopy full SHA for 7c2a3be
flang/examples/FlangOmpReport/FlangOmpReportVisitor.cpp
@@ -112,6 +112,10 @@ std::string OpenMPCounterVisitor::getName(const OpenMPDeclarativeConstruct &c) {
112
const CharBlock &source{o.source};
113
return normalize_construct_name(source.ToString());
114
},
115
+ [&](const OmpMetadirectiveDirective &o) -> std::string {
116
+ const CharBlock &source{o.source};
117
+ return normalize_construct_name(source.ToString());
118
+ },
119
[&](const auto &o) -> std::string {
120
const CharBlock &source{std::get<Verbatim>(o.t).source};
121
0 commit comments