Commit f6709c70 by Jim Wilson

(output_prolog): Use multiple fputs calls instead of

one call with multiple strings.

From-SVN: r7345
parent 34ab957b
...@@ -1443,13 +1443,12 @@ output_prolog (file, size) ...@@ -1443,13 +1443,12 @@ output_prolog (file, size)
/* Write .extern for AIX common mode routines, if needed. */ /* Write .extern for AIX common mode routines, if needed. */
if (! TARGET_POWER && ! TARGET_POWERPC && ! common_mode_defined) if (! TARGET_POWER && ! TARGET_POWERPC && ! common_mode_defined)
{ {
fputs ("\t.extern __mulh\n" fputs ("\t.extern __mulh\n", file);
"\t.extern __mull\n" fputs ("\t.extern __mull\n", file);
"\t.extern __divss\n" fputs ("\t.extern __divss\n", file);
"\t.extern __divus\n" fputs ("\t.extern __divus\n", file);
"\t.extern __quoss\n" fputs ("\t.extern __quoss\n", file);
"\t.extern __quous\n", fputs ("\t.extern __quous\n", file);
file);
common_mode_defined = 1; common_mode_defined = 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment