From: Doug Evans Date: Fri, 10 May 1996 02:01:26 +0000 (+0000) Subject: varasm.c (assemble_variable): ASM_DECLARE_OBJECT_NAME needn't consider bytecodes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b7540b68a7f2f9b07fa52dbc3c6150e53f1f064;p=gcc.git 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 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index c89069be89a..0da807a7dee 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);