diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-16 01:19:27 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-16 01:19:27 +0000 |
commit | 95f19d08cbce09e0e00007151f516e9a3f452643 (patch) | |
tree | b3390248c15e5015c8e89e01cc90319713557b2e /gcc/gimple.h | |
parent | 13ac96bc734df3ca36e6ab640ad6aeb97b2f991b (diff) | |
download | gcc-95f19d08cbce09e0e00007151f516e9a3f452643.tar.gz |
* gimple.h (enum gf_mask): Change the ordering of GF_OMP_* bits.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204894 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r-- | gcc/gimple.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index c7cb9f75d18..e675b0753b2 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -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, |