* read.c (s_fill): If md_flush_pending_output is defined, call it.
authorKen Raeburn <raeburn@cygnus>
Tue, 5 Dec 1995 22:28:25 +0000 (22:28 +0000)
committerKen Raeburn <raeburn@cygnus>
Tue, 5 Dec 1995 22:28:25 +0000 (22:28 +0000)
gas/ChangeLog
gas/read.c

index 928c33bcd1b576543932c707f772e26f5996d4a6..42e40686de0225ac59aaccff1f31a575a1f89444 100644 (file)
@@ -1,3 +1,8 @@
+Tue Dec  5 13:26:34 1995  Ken Raeburn  <raeburn@cygnus.com>
+
+       * read.c (s_fill): If md_flush_pending_output is defined, call
+       it.
+
 Mon Dec  4 15:10:53 1995  Ken Raeburn  <raeburn@cygnus.com>
 
        * config/obj-coff.c (size_section, fill_section, fixup_mdeps):
index 33ad5af715bdce115affc7bff601ba712c62ee55..23ab5961d11ccf183acfe07ca98f3ea1f18bf615 100644 (file)
@@ -1490,6 +1490,9 @@ s_fill (ignore)
   register long temp_fill = 0;
   char *p;
 
+#ifdef md_flush_pending_output
+  md_flush_pending_output ();
+#endif
 
   temp_repeat = get_absolute_expression ();
   if (*input_line_pointer == ',')