diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-19 05:11:35 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-19 05:11:35 +0000 |
commit | c388a0c42beb304464fc9613300abde3465347ca (patch) | |
tree | 876f8cb36aed05a5b7557b4653e32e14b72776a7 /gcc | |
parent | 2b067faf78b3441ec3b13deb94536c3e903fffd0 (diff) | |
download | gcc-c388a0c42beb304464fc9613300abde3465347ca.zip gcc-c388a0c42beb304464fc9613300abde3465347ca.tar.gz gcc-c388a0c42beb304464fc9613300abde3465347ca.tar.bz2 |
* config/mips/mips.c (mips_asm_file_start): Handle ABICALLS_ASM_OP.
From-SVN: r5804
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.c | 5 |
1 files changed, 4 insertions, 1 deletions
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) { |