[Openmp-commits] [openmp] [OpenMP][libomp] Add transparent task flag bit to kmp_tasking_flags (PR #168873)
Terry Wilmarth via Openmp-commits
openmp-commits at lists.llvm.org
Thu Nov 20 08:22:18 PST 2025
================
@@ -2709,6 +2709,7 @@ typedef struct kmp_tasking_flags { /* Total struct must be exactly 32 bits */
unsigned tasktype : 1;
unsigned reserved : 8;
unsigned free_agent_eligible : 1;
+ unsigned transparent : 1;
----------------
TerryLWilmarth wrote:
It needs to be reverse order of what you have below. So it should be above free_agent_eligible. Also, need to adjust reserved above that.
https://github.com/llvm/llvm-project/pull/168873
More information about the Openmp-commits
mailing list