(output_prolog): Use multiple fputs calls instead of
authorJim Wilson <wilson@gcc.gnu.org>
Fri, 20 May 1994 16:53:46 +0000 (09:53 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Fri, 20 May 1994 16:53:46 +0000 (09:53 -0700)
one call with multiple strings.

From-SVN: r7345

gcc/config/rs6000/rs6000.c

index 37191e78b5f735d92b65a73ecb2894a1618621e3..7144456ced7fa8d64c67db74008983a5fc18a6b2 100644 (file)
@@ -1443,13 +1443,12 @@ output_prolog (file, size)
   /* Write .extern for AIX common mode routines, if needed.  */
   if (! TARGET_POWER && ! TARGET_POWERPC && ! common_mode_defined)
     {
-      fputs ("\t.extern __mulh\n"
-            "\t.extern __mull\n"
-            "\t.extern __divss\n"
-            "\t.extern __divus\n"
-            "\t.extern __quoss\n"
-            "\t.extern __quous\n",
-            file);
+      fputs ("\t.extern __mulh\n", file);
+      fputs ("\t.extern __mull\n", file);
+      fputs ("\t.extern __divss\n", file);
+      fputs ("\t.extern __divus\n", file);
+      fputs ("\t.extern __quoss\n", file);
+      fputs ("\t.extern __quous\n", file);
       common_mode_defined = 1;
     }