[flang-commits] [clang] [flang] [llvm] [CLANG][OpenMP] Add support for OpenMP6.0 transparent clause (PR #166810)

Alexey Bataev via flang-commits flang-commits at lists.llvm.org
Fri Dec 26 06:30:16 PST 2025


================
@@ -17424,6 +17431,48 @@ OMPClause *SemaOpenMP::ActOnOpenMPThreadsetClause(OpenMPThreadsetKind Kind,
       OMPThreadsetClause(Kind, KindLoc, StartLoc, LParenLoc, EndLoc);
 }
 
+OMPClause *SemaOpenMP::ActOnOpenMPTransparentClause(Expr *ImpexTypeArg,
+                                                    SourceLocation StartLoc,
+                                                    SourceLocation LParenLoc,
+                                                    SourceLocation EndLoc) {
+  if (ImpexTypeArg->getType()->isTypedefNameType()) {
+    const clang::TypedefType *typedefType =
+        llvm::dyn_cast<clang::TypedefType>(ImpexTypeArg->getType());
----------------
alexey-bataev wrote:

```suggestion
    const auto *TypedefType =
        cast<TypedefType>(ImpexTypeArg->getType());
```

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


More information about the flang-commits mailing list