Commit 0ffc395f by Uros Bizjak

go-gcc.cc (Gcc_backend::global_variable_set_init): Rename symtab_get_node to symtab_node::get.

	* go-gcc.cc (Gcc_backend::global_variable_set_init): Rename
	symtab_get_node to symtab_node::get.

From-SVN: r213026
parent 98326512
2014-07-24 Uros Bizjak <ubizjak@gmail.com>
* go-gcc.cc (Gcc_backend::global_variable_set_init): Rename
symtab_get_node to symtab_node::get.
2014-06-13 Ian Lance Taylor <iant@google.com> 2014-06-13 Ian Lance Taylor <iant@google.com>
PR go/61496 PR go/61496
...@@ -7,7 +12,7 @@ ...@@ -7,7 +12,7 @@
2014-06-10 Jan Hubicka <hubicka@ucw.cz> 2014-06-10 Jan Hubicka <hubicka@ucw.cz>
* go/go-gcc.cc (Gcc_backend::global_variable_set_init): Use * go-gcc.cc (Gcc_backend::global_variable_set_init): Use
symtab_get_node(var_decl)->implicit_section. symtab_get_node(var_decl)->implicit_section.
2014-06-07 Jan Hubicka <hubicka@ucw.cz> 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
......
...@@ -2374,8 +2374,8 @@ Gcc_backend::global_variable_set_init(Bvariable* var, Bexpression* expr) ...@@ -2374,8 +2374,8 @@ Gcc_backend::global_variable_set_init(Bvariable* var, Bexpression* expr)
// If this variable goes in a unique section, it may need to go into // If this variable goes in a unique section, it may need to go into
// a different one now that DECL_INITIAL is set. // a different one now that DECL_INITIAL is set.
if (symtab_get_node(var_decl) if (symtab_node::get(var_decl)
&& symtab_get_node(var_decl)->implicit_section) && symtab_node::get(var_decl)->implicit_section)
{ {
set_decl_section_name (var_decl, NULL); set_decl_section_name (var_decl, NULL);
resolve_unique_section (var_decl, resolve_unique_section (var_decl,
......
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