diff options
author | Seongbae Park <seongbae.park@gmail.com> | 2008-12-30 18:59:51 +0000 |
---|---|---|
committer | Seongbae Park <spark@gcc.gnu.org> | 2008-12-30 18:59:51 +0000 |
commit | 65cfcd0704f0cff90cfb96a27b6816dd9e57a025 (patch) | |
tree | 374fc586b156e5953f19d3d12d2b8ed0732f88d6 /gcc/tree-profile.c | |
parent | 7f2a9982659c7963ff213722e1feabbd7563118e (diff) | |
download | gcc-65cfcd0704f0cff90cfb96a27b6816dd9e57a025.tar.gz |
revert: tree-profile.c (tree_init_ic_make_global_vars): Make static variables TLS.
2008-12-31 Seongbae Park <seongbae.park@gmail.com>
Revert:
2008-12-29 Seongbae Park <seongbae.park@gmail.com>
* tree-profile.c (tree_init_ic_make_global_vars): Make static
variables TLS.
From-SVN: r142965
Diffstat (limited to 'gcc/tree-profile.c')
-rw-r--r-- | gcc/tree-profile.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-profile.c b/gcc/tree-profile.c index d13ea0288b9..4467668a885 100644 --- a/gcc/tree-profile.c +++ b/gcc/tree-profile.c @@ -82,7 +82,6 @@ tree_init_ic_make_global_vars (void) TREE_PUBLIC (ic_void_ptr_var) = 0; DECL_ARTIFICIAL (ic_void_ptr_var) = 1; DECL_INITIAL (ic_void_ptr_var) = NULL; - DECL_TLS_MODEL (ic_void_ptr_var) = decl_default_tls_model (ic_void_ptr_var); assemble_variable (ic_void_ptr_var, 0, 0, 0); gcov_type_ptr = build_pointer_type (get_gcov_type ()); @@ -94,7 +93,6 @@ tree_init_ic_make_global_vars (void) TREE_PUBLIC (ic_gcov_type_ptr_var) = 0; DECL_ARTIFICIAL (ic_gcov_type_ptr_var) = 1; DECL_INITIAL (ic_gcov_type_ptr_var) = NULL; - DECL_TLS_MODEL (ic_gcov_type_ptr_var) = decl_default_tls_model (ic_gcov_type_ptr_var); assemble_variable (ic_gcov_type_ptr_var, 0, 0, 0); } |