From 5b7540b68a7f2f9b07fa52dbc3c6150e53f1f064 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 10 May 1996 02:01:26 +0000 Subject: [PATCH] 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 --- gcc/toplev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/toplev.c b/gcc/toplev.c index c89069b..0da807a 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -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); -- 2.7.4