diff options
Diffstat (limited to 'libgomp/icv.c')
-rw-r--r-- | libgomp/icv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/icv.c b/libgomp/icv.c index 42db4fe..68c400a 100644 --- a/libgomp/icv.c +++ b/libgomp/icv.c @@ -69,7 +69,7 @@ void omp_set_schedule (omp_sched_t kind, int chunk_size) { struct gomp_task_icv *icv = gomp_icv (true); - switch (kind) + switch (kind & ~omp_sched_monotonic) { case omp_sched_static: if (chunk_size < 1) |