]> gcc.gnu.org Git - gcc.git/commitdiff
* config/mips/mips.c (mips_asm_file_start): Handle ABICALLS_ASM_OP.
authorRichard Stallman <rms@gnu.org>
Tue, 19 Oct 1993 05:11:35 +0000 (05:11 +0000)
committerRichard Stallman <rms@gnu.org>
Tue, 19 Oct 1993 05:11:35 +0000 (05:11 +0000)
From-SVN: r5804

gcc/config/mips/mips.c

index 4763cc1a8c370f65a02cfe23fd581bf8836491e6..735c6bf789ebfac43391f91919395aadc852fe9f 100644 (file)
@@ -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)
     {
This page took 0.068917 seconds and 5 git commands to generate.