This is the mail archive of the binutils@sourceware.org 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]
Other format: [Raw text]

PATCH: Put reg before rm in modrm


I am checking in this patch. It is easier to compare it against
the spec.


H.J.
----
2007-04-27  H.J. Lu  <hongjiu.lu@intel.com>

	* i386-dis.c (modrm): Put reg before rm.

--- opcodes/i386-dis.c.mod	2007-04-26 21:22:14.000000000 -0700
+++ opcodes/i386-dis.c	2007-04-27 12:41:23.000000000 -0700
@@ -1443,8 +1443,8 @@ static disassemble_info *the_info;
 static struct
   {
     int mod;
-    int rm;
     int reg;
+    int rm;
   }
 modrm;
 static unsigned char need_modrm;


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