From c388a0c42beb304464fc9613300abde3465347ca Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 19 Oct 1993 05:11:35 +0000 Subject: * config/mips/mips.c (mips_asm_file_start): Handle ABICALLS_ASM_OP. From-SVN: r5804 --- gcc/config/mips/mips.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gcc') diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 4763cc1..735c6bf 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -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) { -- cgit v1.1