Commit c388a0c4 by Richard Stallman

* config/mips/mips.c (mips_asm_file_start): Handle ABICALLS_ASM_OP.

From-SVN: r5804
parent 2b067faf
......@@ -3659,8 +3659,11 @@ mips_asm_file_start (stream)
fprintf (stream, "\t.set\tnobopt\n");
/* Generate the pseudo ops that the Pyramid based System V.4 wants. */
#ifndef ABICALLS_ASM_OP
#define ABICALLS_ASM_OP ".abicalls"
#endif
if (TARGET_ABICALLS)
fprintf (stream, "\t.abicalls\n");
fprintf (stream, "\t%s\n", ABICALLS_ASM_OP);
if (TARGET_GP_OPT)
{
......
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