Commit 9b5b7e3a by Mark Mitchell Committed by Mark Mitchell

re PR c++/8333 (c++ emits double .globals for symbols [ regression from 3.0.4 ])

	PR c++/8333
	* varasm.c (asm_output_aligned_bss): Do not call
	ASM_GLOBALIZE_LABEL.

From-SVN: r58658
parent 1c4048ca
2002-10-30 Mark Mitchell <mark@codesourcery.com>
PR c++/8333
* varasm.c (asm_output_aligned_bss): Do not call
ASM_GLOBALIZE_LABEL.
2002-10-30 David Edelsohn <edelsohn@gnu.org> 2002-10-30 David Edelsohn <edelsohn@gnu.org>
Torbjorn Granlund <tege@swox.com> Torbjorn Granlund <tege@swox.com>
......
...@@ -535,7 +535,6 @@ asm_output_aligned_bss (file, decl, name, size, align) ...@@ -535,7 +535,6 @@ asm_output_aligned_bss (file, decl, name, size, align)
const char *name; const char *name;
int size, align; int size, align;
{ {
(*targetm.asm_out.globalize_label) (file, name);
bss_section (); bss_section ();
ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT)); ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
#ifdef ASM_DECLARE_OBJECT_NAME #ifdef ASM_DECLARE_OBJECT_NAME
......
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