diff options
author | Bob Wilson <bob.wilson@acm.org> | 2004-03-12 17:48:12 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2004-03-12 17:48:12 +0000 |
commit | 00bbdfe7539ff95c35e1428fd42019fbe6a0741d (patch) | |
tree | 248bb11db1712164b434d8f0a0e0fc2adb98f4f8 /gas | |
parent | 0e02aa50226babd5179cf4af1b47c69b17929ef5 (diff) | |
download | binutils-00bbdfe7539ff95c35e1428fd42019fbe6a0741d.zip binutils-00bbdfe7539ff95c35e1428fd42019fbe6a0741d.tar.gz binutils-00bbdfe7539ff95c35e1428fd42019fbe6a0741d.tar.bz2 |
* read.c (s_leb128): Call md_flush_pending_output.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/read.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index bf03c3f..4089609 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2004-03-12 Bob Wilson <bob.wilson@acm.org> + + * read.c (s_leb128): Call md_flush_pending_output. + 2004-03-12 Michal Ludvig <mludvig@suse.cz> * config/tc-i386.c (output_insn): Handle PadLock instructions. @@ -4372,6 +4372,10 @@ s_leb128 (int sign) { expressionS exp; +#ifdef md_flush_pending_output + md_flush_pending_output (); +#endif + do { expression (&exp); |