diff options
author | Seongbae Park <seongbae.park@gmail.com> | 2008-12-29 20:10:21 +0000 |
---|---|---|
committer | Seongbae Park <spark@gcc.gnu.org> | 2008-12-29 20:10:21 +0000 |
commit | 31375f4d8dd4149c5aeafcd0b757825d3f23841a (patch) | |
tree | 55ddf2004a77f0e09e724fffcda4d2b2298d9970 /gcc/tree-profile.c | |
parent | c0c3c409a78fa6a51d517ce63473ab1e84a4727d (diff) | |
download | gcc-31375f4d8dd4149c5aeafcd0b757825d3f23841a.tar.gz |
tree-profile.c (tree_init_ic_make_global_vars): Make static variables TLS.
2008-12-29 Seongbae Park <seongbae.park@gmail.com>
* tree-profile.c (tree_init_ic_make_global_vars): Make static
variables TLS.
From-SVN: r142953
Diffstat (limited to 'gcc/tree-profile.c')
-rw-r--r-- | gcc/tree-profile.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/tree-profile.c b/gcc/tree-profile.c index 4467668a885..d13ea0288b9 100644 --- a/gcc/tree-profile.c +++ b/gcc/tree-profile.c @@ -82,6 +82,7 @@ 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 ()); @@ -93,6 +94,7 @@ 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); } |