[flang-commits] [flang] [llvm] [FLANG][OpenMP]Add frontend support for ASSUME and ASSUMES (PR #120770)

Krzysztof Parzyszek via flang-commits flang-commits at lists.llvm.org
Fri Dec 20 09:20:12 PST 2024


================
@@ -3740,6 +3740,19 @@ struct OmpVariableCategory {
 
 // --- Clauses
 
+struct OmpDirectiveNameEntry {
+  WRAPPER_CLASS_BOILERPLATE(OmpDirectiveNameEntry, llvm::omp::Directive);
+};
+using OmpDirectiveList = std::list<OmpDirectiveNameEntry>;
----------------
kparzysz wrote:

Please remove the `OmpDirectiveNameEntry` class and use `llvm::omp::Directive` directly.

https://github.com/llvm/llvm-project/pull/120770


More information about the flang-commits mailing list