diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-09-04 15:49:35 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-09-04 15:49:35 +0000 |
commit | 4fe53c9827dd950f6fac045494bb4821a40b2141 (patch) | |
tree | 1888c9a39a9b0491f364915ee978ff8b09a4f1f1 /opcodes | |
parent | 4b69d4ada37315358a777fafdec0fb367fe0d911 (diff) | |
download | gdb-4fe53c9827dd950f6fac045494bb4821a40b2141.zip gdb-4fe53c9827dd950f6fac045494bb4821a40b2141.tar.gz gdb-4fe53c9827dd950f6fac045494bb4821a40b2141.tar.bz2 |
1999-09-04 H.J. Lu <hjl@gnu.org>
* i386-dis.c (print_insn_i386): Set bytes_per_line to 7.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 0939724..12e667b 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +1999-09-04 H.J. Lu <hjl@gnu.org> + + * i386-dis.c (print_insn_i386): Set bytes_per_line to 7. + Mon Aug 30 18:56:14 1999 Richard Henderson <rth@cygnus.com> * alpha-opc.c (fetch, fetch_m, ecb, wh64): RA must be R31. diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 49201ff..3018b7b 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -2128,9 +2128,9 @@ print_insn_i386 (pc, info) abort (); orig_sizeflag = sizeflag; - /* The output looks better if we put 6 bytes on a line, since that + /* The output looks better if we put 7 bytes on a line, since that puts most long word instructions on a single line. */ - info->bytes_per_line = 6; + info->bytes_per_line = 7; info->private_data = (PTR) &priv; priv.max_fetched = priv.the_buffer; |