From: Bob Wilson Date: Fri, 12 Mar 2004 17:48:12 +0000 (+0000) Subject: * read.c (s_leb128): Call md_flush_pending_output. X-Git-Tag: gprof-pre-ansify-2004-05-26~890 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=00bbdfe7539ff95c35e1428fd42019fbe6a0741d;p=thirdparty%2Fbinutils-gdb.git * read.c (s_leb128): Call md_flush_pending_output. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index bf03c3f2b17..4089609f58a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2004-03-12 Bob Wilson + + * read.c (s_leb128): Call md_flush_pending_output. + 2004-03-12 Michal Ludvig * config/tc-i386.c (output_insn): Handle PadLock instructions. diff --git a/gas/read.c b/gas/read.c index 82c0434cbb4..f50409ccebe 100644 --- a/gas/read.c +++ b/gas/read.c @@ -4372,6 +4372,10 @@ s_leb128 (int sign) { expressionS exp; +#ifdef md_flush_pending_output + md_flush_pending_output (); +#endif + do { expression (&exp);