aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1994-05-20 09:53:46 -0700
committerJim Wilson <wilson@gcc.gnu.org>1994-05-20 09:53:46 -0700
commitf6709c70a8a8bd93173cbc9ff001e257e8d41a08 (patch)
treeccf5dbc81acbde3553d57806834c60069a9f4245
parent34ab957bb38d14a0dfa7a532fb0aee5a627fe987 (diff)
downloadgcc-f6709c70a8a8bd93173cbc9ff001e257e8d41a08.zip
gcc-f6709c70a8a8bd93173cbc9ff001e257e8d41a08.tar.gz
gcc-f6709c70a8a8bd93173cbc9ff001e257e8d41a08.tar.bz2
(output_prolog): Use multiple fputs calls instead of
one call with multiple strings. From-SVN: r7345
-rw-r--r--gcc/config/rs6000/rs6000.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 37191e7..7144456 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -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;
}