[clang] [flang] [llvm] [CLANG][OpenMP] Add support for OpenMP6.0 transparent clause (PR #166810)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Sat Dec 13 09:41:28 PST 2025
================
@@ -388,6 +390,18 @@ class DSAStackTy {
/// Gets omp_event_handle_t type.
QualType getOMPEventHandleT() const { return OMPEventHandleT; }
+ /// Returns the current value of OMPImpexT.
+ QualType getOMPImpexT() const { return OMPImpexT; }
+
+ /// Sets the OMPImpexT to the provided QualType Ty.
+ void setOMPImpexT(QualType Ty) { OMPImpexT = Ty; }
+
+ // Maps the ImpexType to the provided expression (Impex) and
+ // stores the mapping in the OMPPredefinedImpex.
+ void setImpex(OMPImpexDeclAttr::ImpexTypeTy ImpexType, Expr *Impex) {
----------------
alexey-bataev wrote:
Unused?
https://github.com/llvm/llvm-project/pull/166810
More information about the llvm-commits
mailing list