2009-11-13 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Sat, 14 Nov 2009 01:46:28 +0000 (01:46 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Sat, 14 Nov 2009 01:46:28 +0000 (01:46 +0000)
* config/tc-i386.c (_i386_insn): Don't use bit field on
swap_operand.

gas/ChangeLog
gas/config/tc-i386.c

index 246c7e6bcfcc0ca637a32a4ee03531bc65eff185..f61097cfcea90ba407fb0c707b9052e47b145da1 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-13  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * config/tc-i386.c (_i386_insn): Don't use bit field on
+       swap_operand.
+
 2009-11-12  H.J. Lu  <hongjiu.lu@intel.com>
 
        * config/tc-i386.c (LOCKREP_PREFIX): Removed.
index 4f80e9844fdbd14190b50e0806a2034ff5fe3a39..6aa9949d86d7868f88d729b2783d5f00f646021e 100644 (file)
@@ -257,7 +257,7 @@ struct _i386_insn
     vex_prefix vex;
 
     /* Swap operand in encoding.  */
-    unsigned int swap_operand : 1;
+    unsigned int swap_operand;
   };
 
 typedef struct _i386_insn i386_insn;