[clang] [llvm] [Clang][OpenMP] Implement Loop splitting `#pragma omp split` directive (PR #183261)
Amit Tiwari via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 13 06:52:59 PDT 2026
================
@@ -696,6 +696,9 @@ CXCursor cxcursor::MakeCXCursor(const Stmt *S, const Decl *Parent,
case Stmt::OMPReverseDirectiveClass:
K = CXCursor_OMPReverseDirective;
break;
+ case Stmt::OMPSplitDirectiveClass:
+ K = CXCursor_UnexposedStmt;
----------------
amitamd7 wrote:
Addressed.
https://github.com/llvm/llvm-project/pull/183261
More information about the cfe-commits
mailing list