diff options
author | Jakub Jelinek <jakub@redhat.com> | 2013-02-05 16:56:20 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2013-02-05 16:56:20 +0100 |
commit | 31502f9f1f9095aaa60094385a2e116b03b23804 (patch) | |
tree | 9aad3696cd768b49baf8106db0dd8853bcbb6670 /gcc | |
parent | a74db9bd86ae6801699307541fa2d4d65b3cc3b5 (diff) | |
download | gcc-31502f9f1f9095aaa60094385a2e116b03b23804.zip gcc-31502f9f1f9095aaa60094385a2e116b03b23804.tar.gz gcc-31502f9f1f9095aaa60094385a2e116b03b23804.tar.bz2 |
* tree.h (struct tree_decl_with_vis): Remove thread_local field.
From-SVN: r195762
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/tree.h | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6440481..ffe1af3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2013-02-05 Jakub Jelinek <jakub@redhat.com> + * tree.h (struct tree_decl_with_vis): Remove thread_local field. + PR sanitizer/55374 * config/gnu-user.h (LIBTSAN_EARLY_SPEC): Define. (STATIC_LIBTSAN_LIBS): Likewise. @@ -3198,13 +3198,14 @@ struct GTY(()) tree_decl_with_vis { /* Belong to VAR_DECL exclusively. */ unsigned defer_output : 1; unsigned hard_register : 1; - unsigned thread_local : 1; unsigned common_flag : 1; unsigned in_text_section : 1; unsigned in_constant_pool : 1; unsigned dllimport_flag : 1; /* Don't belong to VAR_DECL exclusively. */ unsigned weak_flag : 1; + /* When SECTION_NAME is implied by -ffunction-section. */ + unsigned implicit_section_name_p : 1; unsigned seen_in_bind_expr : 1; unsigned comdat_flag : 1; @@ -3217,9 +3218,7 @@ struct GTY(()) tree_decl_with_vis { unsigned init_priority_p : 1; /* Used by C++ only. Might become a generic decl flag. */ unsigned shadowed_for_var_p : 1; - /* When SECTION_NAME is implied by -ffunsection-section. */ - unsigned implicit_section_name_p : 1; - /* 13 unused bits. */ + /* 14 unused bits. */ }; extern tree decl_debug_expr_lookup (tree); |