From: Stan Cox Date: Fri, 4 Oct 1996 20:13:04 +0000 (+0000) Subject: (asm_output_function_prefix): Don't use ASM_DECLARE_FUNCTION_NAME if it is not defined. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af6d53df71f7f6d21c022f4e437aafa7df7598e7;p=gcc.git (asm_output_function_prefix): Don't use ASM_DECLARE_FUNCTION_NAME if it is not defined. From-SVN: r12902 --- diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 2b9eddb6abc..95408822663 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1731,7 +1731,9 @@ asm_output_function_prefix (file, name) } prologue_node = make_node (FUNCTION_DECL); DECL_RESULT (prologue_node) = 0; +#ifdef ASM_DECLARE_FUNCTION_NAME ASM_DECLARE_FUNCTION_NAME (file, pic_label_name, prologue_node); +#endif output_asm_insn ("movl (%1),%0", xops); output_asm_insn ("ret", xops); }