This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A patch for i386-dis.c


Pentium/III has some long instructions. 7 looks nicer.

-- 
H.J. Lu (hjl@gnu.org)
--
Sun Mar 28 11:48:17 1999  H.J. Lu  (hjl@gnu.org)

	* i386-dis.c (print_insn_x86): Set bytes_per_line to 7.

Index: i386-dis.c
===================================================================
RCS file: /work/cvs/gnu/binutils/opcodes/i386-dis.c,v
retrieving revision 1.1.1.7
diff -u -p -r1.1.1.7 i386-dis.c
--- i386-dis.c	1999/08/21 17:33:10	1.1.1.7
+++ i386-dis.c	1999/08/23 01:54:48
@@ -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;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]