[Openmp-commits] [openmp] [OpenMP] OpenMP ThreadSet clause - basic runtime (PR #144409)
Shilei Tian via Openmp-commits
openmp-commits at lists.llvm.org
Tue Jun 17 10:03:36 PDT 2025
================
@@ -2740,7 +2740,8 @@ typedef struct kmp_tasking_flags { /* Total struct must be exactly 32 bits */
unsigned tasking_ser : 1;
unsigned task_serial : 1;
unsigned tasktype : 1;
- unsigned reserved : 8;
+ unsigned reserved : 7;
+ unsigned free_agent_eligible : 1;
----------------
shiltian wrote:
It looks like you need to use reversed order for big endian here
https://github.com/llvm/llvm-project/pull/144409
More information about the Openmp-commits
mailing list