lto-streamer.h (struct output_block::symbol): Change from struct symtab_node to plain...
authorGerald Pfeifer <gerald@pfeifer.com>
Mon, 11 Aug 2014 02:10:00 +0000 (02:10 +0000)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Mon, 11 Aug 2014 02:10:00 +0000 (02:10 +0000)
* lto-streamer.h (struct output_block::symbol): Change from
struct symtab_node to plain symtab_node.
(referenced_from_this_partition_p): Change first parameter
from struct symtab_node to plain symtab_node.

From-SVN: r213805

gcc/ChangeLog
gcc/lto-streamer.h

index 2bf03efb557fa4bf84c1c5a8f4ac90076fc80068..6962fd02abf6c43121f0b84e7dbeeb7bad4ea80e 100644 (file)
@@ -1,3 +1,10 @@
+2014-08-10  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * lto-streamer.h (struct output_block::symbol): Change from
+       struct symtab_node to plain symtab_node.
+       (referenced_from_this_partition_p): Change first parameter
+       from struct symtab_node to plain symtab_node.
+
 2014-08-10  Marek Polacek  <polacek@redhat.com>
 
        PR c/51849
index 67bbfe0ffdede1b29bdbc6a70f2b0bf34641430d..4bec9690bc6390d7621de4e4a05944d2e2be066e 100644 (file)
@@ -636,7 +636,7 @@ struct output_block
 
   /* The current symbol that we are currently serializing.  Null
      if we are serializing something else.  */
-  struct symtab_node *symbol;
+  symtab_node *symbol;
 
   /* These are the last file and line that were seen in the stream.
      If the current node differs from these, it needs to insert
@@ -826,7 +826,7 @@ bool referenced_from_other_partition_p (struct ipa_ref_list *,
                                        lto_symtab_encoder_t);
 bool reachable_from_other_partition_p (struct cgraph_node *,
                                       lto_symtab_encoder_t);
-bool referenced_from_this_partition_p (struct symtab_node *,
+bool referenced_from_this_partition_p (symtab_node *,
                                        lto_symtab_encoder_t);
 bool reachable_from_this_partition_p (struct cgraph_node *,
                                      lto_symtab_encoder_t);