* gimple.h (enum gf_mask): Change the ordering of GF_OMP_* bits.

From-SVN: r204894
This commit is contained in:
Aldy Hernandez 2013-11-16 01:19:27 +00:00 committed by Aldy Hernandez
parent c4d1d6be22
commit 3a81b570d2
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2013-11-15 Aldy Hernandez <aldyh@redhat.com>
* gimple.h (enum gf_mask): Change the ordering of GF_OMP_* bits.
2013-11-15 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh.c (barrier_align): Return 0 when barrier_or_label

View File

@ -102,13 +102,13 @@ enum gf_mask {
GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
GF_CALL_INTERNAL = 1 << 6,
GF_OMP_PARALLEL_COMBINED = 1 << 0,
GF_OMP_FOR_KIND_MASK = 7,
GF_OMP_FOR_KIND_MASK = 3 << 0,
GF_OMP_FOR_KIND_FOR = 0 << 0,
GF_OMP_FOR_KIND_DISTRIBUTE = 1 << 0,
GF_OMP_FOR_KIND_SIMD = 2 << 0,
GF_OMP_FOR_KIND_CILKSIMD = 3 << 0,
GF_OMP_FOR_KIND_DISTRIBUTE = 1 << 2,
GF_OMP_FOR_COMBINED = 1 << 3,
GF_OMP_FOR_COMBINED_INTO = 1 << 4,
GF_OMP_FOR_COMBINED = 1 << 2,
GF_OMP_FOR_COMBINED_INTO = 1 << 3,
GF_OMP_TARGET_KIND_MASK = 3 << 0,
GF_OMP_TARGET_KIND_REGION = 0 << 0,
GF_OMP_TARGET_KIND_DATA = 1 << 0,