diff options
Diffstat (limited to 'gcc/tree-core.h')
-rw-r--r-- | gcc/tree-core.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gcc/tree-core.h b/gcc/tree-core.h index eb01c24..0e15878 100644 --- a/gcc/tree-core.h +++ b/gcc/tree-core.h @@ -488,10 +488,6 @@ enum omp_clause_code { /* OpenACC clause: tile ( size-expr-list ). */ OMP_CLAUSE_TILE, - /* OpenMP internal-only clause to specify grid dimensions of a gridified - kernel. */ - OMP_CLAUSE__GRIDDIM_, - /* OpenACC clause: if_present. */ OMP_CLAUSE_IF_PRESENT, @@ -600,6 +596,7 @@ enum tree_index { TI_UINT16_TYPE, TI_UINT32_TYPE, TI_UINT64_TYPE, + TI_UINT128_TYPE, TI_VOID, @@ -1556,9 +1553,6 @@ struct GTY(()) tree_omp_clause { enum omp_clause_defaultmap_kind defaultmap_kind; enum omp_clause_bind_kind bind_kind; enum omp_clause_device_type_kind device_type_kind; - /* The dimension a OMP_CLAUSE__GRIDDIM_ clause of a gridified target - construct describes. */ - unsigned int dimension; } GTY ((skip)) subcode; /* The gimplification of OMP_CLAUSE_REDUCTION_{INIT,MERGE} for omp-low's @@ -1724,7 +1718,7 @@ struct GTY(()) tree_decl_common { unsigned decl_flag_3 : 1; /* Logically, these two would go in a theoretical base shared by var and parm decl. */ - unsigned gimple_reg_flag : 1; + unsigned not_gimple_reg_flag : 1; /* In VAR_DECL, PARM_DECL and RESULT_DECL, this is DECL_BY_REFERENCE. */ unsigned decl_by_reference_flag : 1; /* In a VAR_DECL and PARM_DECL, this is DECL_READ_P. */ @@ -1825,6 +1819,7 @@ struct GTY(()) tree_decl_with_vis { /* Belong to FUNCTION_DECL exclusively. */ unsigned regdecl_flag : 1; /* 14 unused bits. */ + /* 32 more unused on 64 bit HW. */ }; struct GTY(()) tree_var_decl { @@ -1900,6 +1895,7 @@ struct GTY(()) tree_function_decl { unsigned replaceable_operator : 1; /* 11 bits left for future expansion. */ + /* 32 bits on 64-bit HW. */ }; struct GTY(()) tree_translation_unit_decl { |