File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
flang/examples/FlangOmpReport Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -208,10 +208,9 @@ void OpenMPCounterVisitor::Post(
208208 " implicit_behavior=" + std::string{OmpDefaultmapClause::EnumToString (c)} +
209209 " ;" ;
210210}
211- void OpenMPCounterVisitor::Post (
212- const OmpDefaultmapClause::VariableCategory &c) {
211+ void OpenMPCounterVisitor::Post (const OmpVariableCategory::Value &c) {
213212 clauseDetails +=
214- " variable_category=" + std::string{OmpDefaultmapClause ::EnumToString (c)} +
213+ " variable_category=" + std::string{OmpVariableCategory ::EnumToString (c)} +
215214 " ;" ;
216215}
217216void OpenMPCounterVisitor::Post (const OmpScheduleModifierType::ModType &c) {
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ struct OpenMPCounterVisitor {
6969 void Post (const OmpProcBindClause::Type &c);
7070 void Post (const OmpDefaultClause::Type &c);
7171 void Post (const OmpDefaultmapClause::ImplicitBehavior &c);
72- void Post (const OmpDefaultmapClause::VariableCategory &c);
72+ void Post (const OmpVariableCategory::Value &c);
7373 void Post (const OmpDeviceTypeClause::Type &c);
7474 void Post (const OmpScheduleModifierType::ModType &c);
7575 void Post (const OmpLinearModifier::Value &c);
You can’t perform that action at this time.
0 commit comments