diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-12-05 22:28:25 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-12-05 22:28:25 +0000 |
commit | 624c91d1e725c92408498f156f6f237dda3e71a9 (patch) | |
tree | 40214625fa3ca96872847ec353131582340cec37 | |
parent | 211eda669419ce7df1e56370f65e1299b7148f91 (diff) | |
download | gdb-624c91d1e725c92408498f156f6f237dda3e71a9.zip gdb-624c91d1e725c92408498f156f6f237dda3e71a9.tar.gz gdb-624c91d1e725c92408498f156f6f237dda3e71a9.tar.bz2 |
* read.c (s_fill): If md_flush_pending_output is defined, call it.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/read.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 928c33b..42e4068 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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): @@ -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 == ',') |