From af6d53df71f7f6d21c022f4e437aafa7df7598e7 Mon Sep 17 00:00:00 2001 From: Stan Cox Date: Fri, 4 Oct 1996 20:13:04 +0000 Subject: [PATCH] (asm_output_function_prefix): Don't use ASM_DECLARE_FUNCTION_NAME if it is not defined. From-SVN: r12902 --- gcc/config/i386/i386.c | 2 ++ 1 file changed, 2 insertions(+) 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); } -- 2.30.2