diff options
author | Strager Neds <strager.nds@gmail.com> | 2020-11-10 11:42:01 -0700 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2020-11-10 11:44:15 -0700 |
commit | 8b9a92f794b8ad8011e6beb11a609efa635c4600 (patch) | |
tree | 015dae9357148c23ef517657a3b019656fd2ebd0 /gcc/tree-emutls.c | |
parent | 5e41e7f0928de55d189475fc14f7e6c9737cd507 (diff) | |
download | gcc-8b9a92f794b8ad8011e6beb11a609efa635c4600.zip gcc-8b9a92f794b8ad8011e6beb11a609efa635c4600.tar.gz gcc-8b9a92f794b8ad8011e6beb11a609efa635c4600.tar.bz2 |
Refactor copying decl section names
gcc/
* cgraph.h (symtab_node::get_section): Constify.
(symtab_node::set_section): Declare new overload.
* symtab.c (symtab_node::set_section): Define new overload.
(symtab_node::copy_visibility_from): Use new overload of
symtab_node::set_section.
(symtab_node::resolve_alias): Same.
* tree.h (set_decl_section_name): Declare new overload.
* tree.c (set_decl_section_name): Define new overload.
* tree-emutls.c (get_emutls_init_templ_addr): Same.
* cgraphclones.c (cgraph_node::create_virtual_clone): Use new
overload of symtab_node::set_section.
(cgraph_node::create_version_clone_with_body): Same.
* trans-mem.c (ipa_tm_create_version): Same.
gcc/c
* c-decl.c (merge_decls): Use new overload of
set_decl_section_name.
gcc/cp
* decl.c (duplicate_decls): Use new overload of
set_decl_section_name.
* method.c (use_thunk): Same.
* optimize.c (maybe_clone_body): Same.
* coroutines.cc (act_des_fn): Same.
gcc/d
* decl.cc (finish_thunk): Use new overload of
set_decl_section_name
Diffstat (limited to 'gcc/tree-emutls.c')
-rw-r--r-- | gcc/tree-emutls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-emutls.c b/gcc/tree-emutls.c index 44755dd4..5b55832 100644 --- a/gcc/tree-emutls.c +++ b/gcc/tree-emutls.c @@ -259,7 +259,7 @@ get_emutls_init_templ_addr (tree decl) if (targetm.emutls.tmpl_section) set_decl_section_name (to, targetm.emutls.tmpl_section); else - set_decl_section_name (to, DECL_SECTION_NAME (decl)); + set_decl_section_name (to, decl); /* Create varpool node for the new variable and finalize it if it is not external one. */ |