(assemble_variable): Only treat vars with DECL_COMMON

as common.

From-SVN: r12157
This commit is contained in:
Jason Merrill 1996-06-04 23:42:33 +00:00
parent c77c286a72
commit cd98bf12d5

View File

@ -1245,7 +1245,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
/* If the target can't output uninitialized but not common global data
in .bss, then we have to use .data. */
#if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
&& (DECL_COMMON (decl) || ! TREE_PUBLIC (decl))
&& DECL_COMMON (decl)
#endif
&& ! dont_output_data)
{