diff options
Diffstat (limited to 'gcc/tree-core.h')
-rw-r--r-- | gcc/tree-core.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/tree-core.h b/gcc/tree-core.h index 8fd27e5..aa7498b 100644 --- a/gcc/tree-core.h +++ b/gcc/tree-core.h @@ -1455,10 +1455,9 @@ struct GTY(()) tree_decl_with_vis { unsigned seen_in_bind_expr : 1; unsigned comdat_flag : 1; + /* Used for FUNCTION_DECL, VAR_DECL and in C++ for TYPE_DECL. */ ENUM_BITFIELD(symbol_visibility) visibility : 2; unsigned visibility_specified : 1; - /* Belongs to VAR_DECL exclusively. */ - ENUM_BITFIELD(tls_model) tls_model : 3; /* Belong to FUNCTION_DECL exclusively. */ unsigned init_priority_p : 1; @@ -1470,7 +1469,7 @@ struct GTY(()) tree_decl_with_vis { unsigned cxx_destructor : 1; /* Belong to FUNCTION_DECL exclusively. */ unsigned final : 1; - /* 12 unused bits. */ + /* 15 unused bits. */ }; struct GTY(()) tree_var_decl { |