diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-11-14 01:46:28 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-11-14 01:46:28 +0000 |
commit | 4473e00469e3453a1ddbb93e8f99b08cfe0702e0 (patch) | |
tree | a7e4d4d8ce9d82c9933f6a34c31eb2061d93d464 /gas | |
parent | c78d1469a9c8899d5d042098bf782c493d8adf8d (diff) | |
download | gdb-4473e00469e3453a1ddbb93e8f99b08cfe0702e0.zip gdb-4473e00469e3453a1ddbb93e8f99b08cfe0702e0.tar.gz gdb-4473e00469e3453a1ddbb93e8f99b08cfe0702e0.tar.bz2 |
2009-11-13 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (_i386_insn): Don't use bit field on
swap_operand.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 246c7e6..f61097c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 4f80e98..6aa9949 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -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; |