* read.c (do_align): Call md_flush_pending_output, if defined.
authorNathan Sidwell <nathan@codesourcery.com>
Mon, 19 Apr 2004 09:32:55 +0000 (09:32 +0000)
committerNathan Sidwell <nathan@codesourcery.com>
Mon, 19 Apr 2004 09:32:55 +0000 (09:32 +0000)
gas/ChangeLog
gas/read.c

index d0a6967c0b7192735396efc1ed42b116315f5361..1c2b6c9b28210582cba34d2a83eec0ec56dd32e5 100644 (file)
@@ -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 --.
index 430a67e3c5d4146cd06d05fd27f91bce6db6d1d9..93e3ec41b171154d8db1fdcd52281237ec487eff 100644 (file)
@@ -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