From: H.J. Lu Date: Sat, 14 Nov 2009 01:46:28 +0000 (+0000) Subject: 2009-11-13 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4473e00469e3453a1ddbb93e8f99b08cfe0702e0;p=binutils-gdb.git 2009-11-13 H.J. Lu * config/tc-i386.c (_i386_insn): Don't use bit field on swap_operand. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 246c7e6bcfc..f61097cfcea 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2009-11-13 H.J. Lu + + * config/tc-i386.c (_i386_insn): Don't use bit field on + swap_operand. + 2009-11-12 H.J. Lu * config/tc-i386.c (LOCKREP_PREFIX): Removed. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 4f80e9844fd..6aa9949d86d 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;