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: Fix a typo in i386-dis.c


I checked in this patch to change THREE_BYTE_0FBA to THREE_BYTE_0F7B.


H.J.
---
2007-10-01  H.J. Lu  <hongjiu.lu@intel.com>

	* i386-dis.c (THREE_BYTE_0FBA): Renamed to ...
	(THREE_BYTE_0F7B): This.
	(dis386_twobyte): Updated.
	(three_byte_table): Updated comments.

--- ./i386-dis.c.foo	2007-10-01 15:12:56.000000000 -0700
+++ ./i386-dis.c	2007-10-01 15:15:14.000000000 -0700
@@ -670,7 +670,7 @@ fetch_data (struct disassemble_info *inf
 #define THREE_BYTE_0F38		(THREE_BYTE_0F25 + 1)
 #define THREE_BYTE_0F3A		(THREE_BYTE_0F38 + 1)
 #define THREE_BYTE_0F7A		(THREE_BYTE_0F3A + 1)
-#define THREE_BYTE_0FBA		(THREE_BYTE_0F7A + 1)
+#define THREE_BYTE_0F7B		(THREE_BYTE_0F7A + 1)
 
 typedef void (*op_rtn) (int bytemode, int sizeflag);
 
@@ -1152,7 +1152,7 @@ static const struct dis386 dis386_twobyt
   { PREFIX_TABLE (PREFIX_0F78) },
   { PREFIX_TABLE (PREFIX_0F79) },
   { THREE_BYTE_TABLE (THREE_BYTE_0F7A) },
-  { THREE_BYTE_TABLE (THREE_BYTE_0FBA) },
+  { THREE_BYTE_TABLE (THREE_BYTE_0F7B) },
   { PREFIX_TABLE (PREFIX_0F7C) },
   { PREFIX_TABLE (PREFIX_0F7D) },
   { PREFIX_TABLE (PREFIX_0F7E) },
@@ -3897,7 +3897,7 @@ static const struct dis386 three_byte_ta
     { "(bad)", { XX } },
     { "(bad)", { XX } },
   },
-  /* THREE_BYTE_SSE5_0F7A */
+  /* THREE_BYTE_0F7A */
   {
     /* 00 */
     { "(bad)",		{ XX } },
@@ -4188,7 +4188,7 @@ static const struct dis386 three_byte_ta
     { "(bad)", { XX } },
     { "(bad)", { XX } },
   },
-  /* THREE_BYTE_SSE5_0F7B */
+  /* THREE_BYTE_0F7B */
   {
     /* 00 */
     { "(bad)", { XX } },


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