[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
Mon Dec 15 05:34:44 PST 2025
================
@@ -550,6 +550,9 @@ void OMPClauseProfiler::VisitOMPDefaultClause(const OMPDefaultClause *C) { }
void OMPClauseProfiler::VisitOMPThreadsetClause(const OMPThreadsetClause *C) {}
+void OMPClauseProfiler::VisitOMPTransparentClause(
+ const OMPTransparentClause *C) {}
----------------
alexey-bataev wrote:
```suggestion
const OMPTransparentClause *C) {
if (C->getImpexType())
Profiler->VisitStmt(C->getImpexType());
}
```
https://github.com/llvm/llvm-project/pull/166810
More information about the flang-commits
mailing list