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 4e3c975 commit 0d20947Copy full SHA for 0d20947
flang/lib/Parser/openmp-parsers.cpp
@@ -91,8 +91,7 @@ TYPE_PARSER(construct<OmpProcBindClause>(
91
// map-type-modifiers -> map-type-modifier [,] [...]
92
// map-type-modifier -> ALWAYS | CLOSE | OMPX_HOLD | PRESENT
93
// map-type -> ALLOC | DELETE | FROM | RELEASE | TO | TOFROM
94
-TYPE_PARSER(
95
- construct<OmpMapClause::TypeModifier>(
+TYPE_PARSER(construct<OmpMapClause::TypeModifier>(
96
"ALWAYS" >> pure(OmpMapClause::TypeModifier::Always) ||
97
"CLOSE" >> pure(OmpMapClause::TypeModifier::Close) ||
98
"OMPX_HOLD" >> pure(OmpMapClause::TypeModifier::OmpxHold) ||
0 commit comments