diff options
author | Richard Stallman <rms@gnu.org> | 1992-06-07 00:50:06 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-06-07 00:50:06 +0000 |
commit | 4dee632b3d17f30a949f415108619ae135310765 (patch) | |
tree | d43eccc2d0f82b0ff4ef73c5df84fcd687383493 /gcc/config/mips | |
parent | b576c6b6c6e3bd4fdc027d0e8c6dac5f053e043e (diff) | |
download | gcc-4dee632b3d17f30a949f415108619ae135310765.zip gcc-4dee632b3d17f30a949f415108619ae135310765.tar.gz gcc-4dee632b3d17f30a949f415108619ae135310765.tar.bz2 |
entered into RCS
From-SVN: r1178
Diffstat (limited to 'gcc/config/mips')
-rw-r--r-- | gcc/config/mips/mips.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index b3bcf01..c69abaa 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -2909,8 +2909,14 @@ override_options () #ifdef _IOLBF /* If -mstats and -quiet, make stderr line buffered. */ 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 + } /* Set up the classification arrays now. */ mips_rtx_classify[(int)PLUS] = CLASS_ADD_OP; |