Commit 5b7540b6 by Doug Evans

varasm.c (assemble_variable): ASM_DECLARE_OBJECT_NAME needn't consider bytecodes.

	* varasm.c (assemble_variable): ASM_DECLARE_OBJECT_NAME needn't
	consider bytecodes.
	* toplev.c (rest_of_decl_compilation): Likewise with
	ASM_FINISH_DECLARE_OBJECT.

From-SVN: r11965
parent 8bd16853
......@@ -2639,7 +2639,8 @@ rest_of_decl_compilation (decl, asmspec, top_level, at_end)
&& (DECL_INITIAL (decl) == 0
|| DECL_INITIAL (decl) == error_mark_node)))
assemble_variable (decl, top_level, at_end, 0);
if (decl == last_assemble_variable_decl)
if (!output_bytecode
&& decl == last_assemble_variable_decl)
{
ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
top_level, at_end);
......
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