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

Zahira Ammarguellat via flang-commits flang-commits at lists.llvm.org
Mon Dec 15 01:58:14 PST 2025


================
@@ -11704,6 +11707,11 @@ void OMPClauseReader::VisitOMPThreadsetClause(OMPThreadsetClause *C) {
   C->setThreadsetKind(TKind);
 }
 
+void OMPClauseReader::VisitOMPTransparentClause(OMPTransparentClause *C) {
+  C->setLParenLoc(Record.readSourceLocation());
+  C->Transparent = Record.readSubExpr();
----------------
zahiraam wrote:

I also renamed `Transparent` to `ImpexType` as @abhinavgaba suggested in comments above https://github.com/llvm/llvm-project/pull/166810/#discussion_r2586762603.

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


More information about the flang-commits mailing list