Commit 31375f4d by Seongbae Park Committed by Seongbae Park

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
parent c0c3c409
2008-12-29 Seongbae Park <seongbae.park@gmail.com>
* tree-profile.c (tree_init_ic_make_global_vars): Make static
variables TLS.
2008-12-29 Jakub Jelinek <jakub@redhat.com>
PR c++/36191
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment