Commit 8fc17ddc by Jan Hubicka Committed by Jan Hubicka

re PR bootstrap/53300 (AIX bootstrap related to varpool patch)


	PR bootstrap/53300
	* varpool.c (varpool_assemble_decl): Also output constat pool entries
	that output_constant_pool missed.

From-SVN: r187397
parent d1093817
2012-05-11 Jan Hubicka <jh@suse.cz>
PR bootstrap/53300
* varpool.c (varpool_assemble_decl): Also output constat pool entries
that output_constant_pool missed.
2012-05-11 Mingjie Xing <mingjie.xing@gmail.com> 2012-05-11 Mingjie Xing <mingjie.xing@gmail.com>
* config/mips/t-vxworks: Change MUTLILIB_EXTRA_OPTS to * config/mips/t-vxworks: Change MUTLILIB_EXTRA_OPTS to
......
...@@ -282,7 +282,7 @@ varpool_assemble_decl (struct varpool_node *node) ...@@ -282,7 +282,7 @@ varpool_assemble_decl (struct varpool_node *node)
/* Constant pool is output from RTL land when the reference /* Constant pool is output from RTL land when the reference
survive till this level. */ survive till this level. */
if (DECL_IN_CONSTANT_POOL (decl)) if (DECL_IN_CONSTANT_POOL (decl) && TREE_ASM_WRITTEN (decl))
return false; return false;
/* Decls with VALUE_EXPR should not be in the varpool at all. They /* Decls with VALUE_EXPR should not be in the varpool at all. They
......
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