Commit 4dee632b by Richard Stallman

entered into RCS

From-SVN: r1178
parent b576c6b6
...@@ -2909,8 +2909,14 @@ override_options () ...@@ -2909,8 +2909,14 @@ override_options ()
#ifdef _IOLBF #ifdef _IOLBF
/* If -mstats and -quiet, make stderr line buffered. */ /* If -mstats and -quiet, make stderr line buffered. */
if (quiet_flag && TARGET_STATS) if (quiet_flag && TARGET_STATS)
setvbuf (stderr, (char *)0, _IOLBF, BUFSIZ); {
#ifdef MIPS_BSD43
setlinebuf (stderr);
#else
setvbuf (stderr, (char *)0, _IOLBF, BUFSIZ);
#endif #endif
#endif
}
/* Set up the classification arrays now. */ /* Set up the classification arrays now. */
mips_rtx_classify[(int)PLUS] = CLASS_ADD_OP; mips_rtx_classify[(int)PLUS] = CLASS_ADD_OP;
......
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