Update comments
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 13 Jan 2010 16:06:12 +0000 (16:06 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 13 Jan 2010 16:06:12 +0000 (16:06 +0000)
2010-01-13  H.J. Lu  <hongjiu.lu@intel.com>

* i386-dis.c (print_insn): Update comments.

opcodes/ChangeLog
opcodes/i386-dis.c

index 9c9334be27c3784cfee793f6f75802ba8e3e2198..8c2b5235bd92f737c7d9ae9c93eb03009602c1bf 100644 (file)
@@ -1,3 +1,7 @@
+2010-01-13  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * i386-dis.c (print_insn): Update comments.
+
 2010-01-12  H.J. Lu  <hongjiu.lu@intel.com>
 
        * i386-dis.c (rex_original): Removed.
index fc7859adae1e18f47472414e6b04c016c05b219c..40f10ac45712cf5e021252c0339236e6117a85c8 100644 (file)
@@ -12339,19 +12339,19 @@ print_insn (bfd_vma pc, disassemble_info *info)
   if (rex_ignored == 0 && (rex ^ rex_used) == 0)
     all_prefixes[last_rex_prefix] = 0;
 
-  /* Check if the SEG prefix used.  */
+  /* Check if the SEG prefix is used.  */
   if ((prefixes & (PREFIX_CS | PREFIX_SS | PREFIX_DS | PREFIX_ES
                   | PREFIX_FS | PREFIX_GS)) != 0
       && (used_prefixes
          & seg_prefix (all_prefixes[last_seg_prefix])) != 0)
     all_prefixes[last_seg_prefix] = 0;
 
-  /* Check if the ADDR prefix used.  */
+  /* Check if the ADDR prefix is used.  */
   if ((prefixes & PREFIX_ADDR) != 0
       && (used_prefixes & PREFIX_ADDR) != 0)
     all_prefixes[last_addr_prefix] = 0;
 
-  /* Check if the DATA prefix used.  */
+  /* Check if the DATA prefix is used.  */
   if ((prefixes & PREFIX_DATA) != 0
       && (used_prefixes & PREFIX_DATA) != 0)
     all_prefixes[last_data_prefix] = 0;