Commit af6d53df by Stan Cox

(asm_output_function_prefix): Don't use ASM_DECLARE_FUNCTION_NAME if it is not defined.

From-SVN: r12902
parent 4787bce0
......@@ -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);
}
......
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