Commit ec5065ec authored by hubicka's avatar hubicka
Browse files

* toplev.c (wrapup_global_declarations): Fix final pass in

	unit-at-atime mode.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71052 138bc75d-0d04-0410-961f-82ee72b054a4
parent 29c42daf
Thu Sep 4 10:43:24 CEST 2003 Jan Hubicka <jh@suse.cz>
* toplev.c (wrapup_global_declarations): Fix final pass in
unit-at-atime mode.
2003-09-04 Mark Mitchell <mark@codesourcery.com>
* doc/extend.texi: Document removal of cast-as-lvalue extension in
......
......@@ -1571,7 +1571,7 @@ wrapup_global_declarations (tree *vec, int len)
if (flag_unit_at_a_time
&& cgraph_varpool_node (decl)->finalized)
needed = 0;
else if (flag_unit_at_a_time
else if ((flag_unit_at_a_time && !cgraph_global_info_ready)
&& (TREE_USED (decl)
|| TREE_USED (DECL_ASSEMBLER_NAME (decl))))
/* needed */;
......
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