We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042540a commit 95069c1Copy full SHA for 95069c1
1 file changed
flang/include/flang/Parser/openmp-utils.h
@@ -39,7 +39,6 @@ struct ConstructId {
39
}
40
41
MAKE_CONSTR_ID(OpenMPDeclarativeAllocate, D::OMPD_allocate);
42
-MAKE_CONSTR_ID(OpenMPDeclareReductionConstruct, D::OMPD_declare_reduction);
43
MAKE_CONSTR_ID(OpenMPExecutableAllocate, D::OMPD_allocate);
44
45
#undef MAKE_CONSTR_ID
@@ -92,7 +91,6 @@ struct DirectiveNameScope {
92
91
if constexpr (std::is_base_of_v<OmpBlockConstruct, T>) {
93
return std::get<OmpBeginDirective>(x.t).DirName();
94
} else if constexpr (std::is_same_v<T, OpenMPDeclarativeAllocate> ||
95
- std::is_same_v<T, OpenMPDeclareReductionConstruct> ||
96
std::is_same_v<T, OpenMPExecutableAllocate>) {
97
return MakeName(std::get<Verbatim>(x.t).source, ConstructId<T>::id);
98
} else {
0 commit comments