Commit cd98bf12 by Jason Merrill

(assemble_variable): Only treat vars with DECL_COMMON

        as common.

From-SVN: r12157
parent c77c286a
......@@ -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)
{
......
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