From 19d64f394ea556da5480f565cefcbc2f63feebaa Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Sat, 14 Nov 2009 01:46:28 +0000 Subject: [PATCH] 2009-11-13 H.J. Lu * config/tc-i386.c (_i386_insn): Don't use bit field on swap_operand. --- gas/ChangeLog | 5 +++++ gas/config/tc-i386.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 246c7e6bc..f61097cfc 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 4f80e9844..6aa9949d8 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; -- 2.11.4.GIT