Hello!

2014-07-24  Uros Bizjak  <ubiz...@gmail.com>

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

Tested on x86_64-linux-gnu and committed to mainline SVN.

Uros.
Index: go-gcc.cc
===================================================================
--- go-gcc.cc   (revision 213019)
+++ go-gcc.cc   (working copy)
@@ -2374,8 +2374,8 @@ Gcc_backend::global_variable_set_init(Bvariable* v
 
   // If this variable goes in a unique section, it may need to go into
   // a different one now that DECL_INITIAL is set.
-  if (symtab_get_node(var_decl)
-      && symtab_get_node(var_decl)->implicit_section)
+  if (symtab_node::get(var_decl)
+      && symtab_node::get(var_decl)->implicit_section)
     {
       set_decl_section_name (var_decl, NULL);
       resolve_unique_section (var_decl,

Reply via email to