diff options
author | Jan Hubicka <jh@suse.cz> | 2010-07-05 20:25:04 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2010-07-05 18:25:04 +0000 |
commit | 92eb4438684a217e0f6968d0ab996424c7af055f (patch) | |
tree | 1ae95da0182acf8c922d2c36bf583ce953dc8ba6 /gcc/ChangeLog | |
parent | 69e18c0985d5e4488b30ccae1e242e004bf274ed (diff) | |
download | gcc-92eb4438684a217e0f6968d0ab996424c7af055f.zip gcc-92eb4438684a217e0f6968d0ab996424c7af055f.tar.gz gcc-92eb4438684a217e0f6968d0ab996424c7af055f.tar.bz2 |
cgraph.h (cgraph_node, [...]): Update docmentation of in_other_partition.
* cgraph.h (cgraph_node, cgraph_varpool_node): Update docmentation of
in_other_partition.
* lto-cgraph.c (referenced_from_other_partition_p,
reachable_from_other_partition_p): Use in_other_partition flags.
(output_node, output_varpool_node): COMDAT nodes always have private
copies and thus are never used from other partition.
* lto.c (add_cgraph_node_to_partition): Forward declare; walk also
nodes from same comdat group as well as all comdat functions referenced
here.
(add_varpool_node_to_partition, add_references_to_partition): New function.
(lto_1_1_map): Skip COMDAT fnctions/variables; use add_varpool_node_to_partition;
clear aux flags when done.
(lto_promote_cross_file_statics): Do not promote stuff that gets duplicated to
each ltrans.
From-SVN: r161846
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d96152e..75b5645 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2010-07-05 Jan Hubicka <jh@suse.cz> + + * cgraph.h (cgraph_node, cgraph_varpool_node): Update docmentation of + in_other_partition. + * lto-cgraph.c (referenced_from_other_partition_p, + reachable_from_other_partition_p): Use in_other_partition flags. + (output_node, output_varpool_node): COMDAT nodes always have private + copies and thus are never used from other partition. + 2010-07-05 Anatoly Sokolov <aesok@post.ru> * config/ia64/ia64.h (MEMORY_MOVE_COST): Remove macro. |