]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* gimple.h (enum gf_mask): Change the ordering of GF_OMP_* bits.
authorAldy Hernandez <aldyh@redhat.com>
Sat, 16 Nov 2013 01:19:27 +0000 (01:19 +0000)
committerAldy Hernandez <aldyh@gcc.gnu.org>
Sat, 16 Nov 2013 01:19:27 +0000 (01:19 +0000)
From-SVN: r204894

gcc/ChangeLog
gcc/gimple.h

index 64405b694b1ddda23f0ad37e7b3a2f586d2979bc..a9f65da388007e6df561eff2c0013544ace6835b 100644 (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
index c7cb9f75d18c83f5949d67ef3bba0ac081baada8..e675b0753b2b32beec5a7c80428eb37b4a95d970 100644 (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,