[clang] [llvm] [Clang] [OpenMP] Add support for '#pragma omp stripe'. (PR #119891)
Zahira Ammarguellat via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 17 11:03:46 PST 2024
================
@@ -1179,6 +1179,13 @@ def OMP_Tile : Directive<"tile"> {
let association = AS_Loop;
let category = CA_Executable;
}
+def OMP_Stripe : Directive<"stripe"> {
+ let allowedOnceClauses = [
+ VersionedClause<OMPC_Sizes, 51>,
----------------
zahiraam wrote:
I have set it to `51` but I think it should be `60`. If you think so too then it might be a good idea to create another PR just for that because it might break a bunch of LIT tests. WDYT?
https://github.com/llvm/llvm-project/pull/119891
More information about the llvm-commits
mailing list