* objdump.c (disassemble_bytes): If the disassembler returns an
authorIan Lance Taylor <ian@airs.com>
Sun, 13 Jun 1999 19:02:25 +0000 (19:02 +0000)
committerIan Lance Taylor <ian@airs.com>
Sun, 13 Jun 1999 19:02:25 +0000 (19:02 +0000)
error, print out anything it may have printed to the buffer.  From
H.J. Lu <hjl@gnu.org>.

binutils/ChangeLog
binutils/objdump.c

index 8e7ba4a..42aafaa 100644 (file)
@@ -1,5 +1,9 @@
 1999-06-13  Ian Lance Taylor  <ian@zembu.com>
 
+       * objdump.c (disassemble_bytes): If the disassembler returns an
+       error, print out anything it may have printed to the buffer.  From
+       H.J. Lu <hjl@gnu.org>.
+
        * defparse.y (explist): Remove separate expline to eliminate
        shift/reduce conflict.
 
index 5baf235..40c68cc 100644 (file)
@@ -1305,7 +1305,12 @@ disassemble_bytes (info, disassemble_fn, insns, data, start, stop, relppp,
              if (info->bytes_per_line != 0)
                bytes_per_line = info->bytes_per_line;
              if (bytes < 0)
-               break;
+               {
+                 if (sfile.current != sfile.buffer)
+                   printf ("%s\n", sfile.buffer);
+                 free (sfile.buffer);
+                 break;
+               }
            }
          else
            {