diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-04-19 09:32:55 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2004-04-19 09:32:55 +0000 |
commit | b8861cfbc758690d3fc48e4259b77c6460e9ca5c (patch) | |
tree | 0a97bf8cf640d2f9da6b4e9652ce2965313abd91 /gas/read.c | |
parent | 3737f867aca299a513aaa99cc87df33ace2c0bf9 (diff) | |
download | gdb-b8861cfbc758690d3fc48e4259b77c6460e9ca5c.zip gdb-b8861cfbc758690d3fc48e4259b77c6460e9ca5c.tar.gz gdb-b8861cfbc758690d3fc48e4259b77c6460e9ca5c.tar.bz2 |
* read.c (do_align): Call md_flush_pending_output, if defined.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1155,6 +1155,9 @@ do_align (int n, char *fill, int len, int max) len = 0; } +#ifdef md_flush_pending_output + md_flush_pending_output (); +#endif #ifdef md_do_align md_do_align (n, fill, len, max, just_record_alignment); #endif |