summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-11 02:10:00 +0000
committergerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-11 02:10:00 +0000
commitefc34f16f72251536171225ccb32bb2d543f9ae0 (patch)
tree92e37aecafec03eff3064d3cd5e5dd53fa9f9573
parent4b977d40abb6aa627f7ab265376430ed828de67d (diff)
downloadgcc-efc34f16f72251536171225ccb32bb2d543f9ae0.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213805 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/lto-streamer.h4
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2bf03efb557..6962fd02abf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h
index 67bbfe0ffde..4bec9690bc6 100644
--- a/gcc/lto-streamer.h
+++ b/gcc/lto-streamer.h
@@ -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);