entered into RCS
authorRichard Stallman <rms@gnu.org>
Sun, 7 Jun 1992 00:50:06 +0000 (00:50 +0000)
committerRichard Stallman <rms@gnu.org>
Sun, 7 Jun 1992 00:50:06 +0000 (00:50 +0000)
From-SVN: r1178

gcc/config/mips/mips.c

index b3bcf01..c69abaa 100644 (file)
@@ -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;