diff options
Diffstat (limited to 'gcc/tree-core.h')
-rw-r--r-- | gcc/tree-core.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/tree-core.h b/gcc/tree-core.h index 6b17da7..d913e51 100644 --- a/gcc/tree-core.h +++ b/gcc/tree-core.h @@ -450,7 +450,10 @@ enum omp_clause_schedule_kind { OMP_CLAUSE_SCHEDULE_AUTO, OMP_CLAUSE_SCHEDULE_RUNTIME, OMP_CLAUSE_SCHEDULE_CILKFOR, - OMP_CLAUSE_SCHEDULE_LAST + OMP_CLAUSE_SCHEDULE_MASK = (1 << 3) - 1, + OMP_CLAUSE_SCHEDULE_MONOTONIC = (1 << 3), + OMP_CLAUSE_SCHEDULE_NONMONOTONIC = (1 << 4), + OMP_CLAUSE_SCHEDULE_LAST = 2 * OMP_CLAUSE_SCHEDULE_NONMONOTONIC - 1 }; enum omp_clause_default_kind { |