2009-11-13 H.J. Lu <hongjiu.lu@intel.com>

* config/tc-i386.c (_i386_insn): Don't use bit field on
	swap_operand.
This commit is contained in:
H.J. Lu 2009-11-14 01:46:28 +00:00
parent c78d1469a9
commit 4473e00469
2 changed files with 6 additions and 1 deletions

View 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.

View 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;