aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-04-19 09:32:55 +0000
committerNathan Sidwell <nathan@codesourcery.com>2004-04-19 09:32:55 +0000
commitb8861cfbc758690d3fc48e4259b77c6460e9ca5c (patch)
tree0a97bf8cf640d2f9da6b4e9652ce2965313abd91 /gas
parent3737f867aca299a513aaa99cc87df33ace2c0bf9 (diff)
downloadbinutils-b8861cfbc758690d3fc48e4259b77c6460e9ca5c.zip
binutils-b8861cfbc758690d3fc48e4259b77c6460e9ca5c.tar.gz
binutils-b8861cfbc758690d3fc48e4259b77c6460e9ca5c.tar.bz2
* read.c (do_align): Call md_flush_pending_output, if defined.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/read.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index d0a6967..1c2b6c9 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2004-04-19 Nathan Sidwell <nathan@codesourcery.com>
+
+ * read.c (do_align): Call md_flush_pending_output, if defined.
+
2004-04-16 Alan Modra <amodra@bigpond.net.au>
* expr.c (operand): Correct checks for ++ and --.
diff --git a/gas/read.c b/gas/read.c
index 430a67e..93e3ec4 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -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