[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86emul: drop unused "bigval" fields from struct operand
commit b0044ac393dd29f7f36d803288198cebe16294eb Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Wed Mar 11 14:08:02 2015 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Wed Mar 11 14:08:02 2015 +0100 x86emul: drop unused "bigval" fields from struct operand Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/arch/x86/x86_emulate/x86_emulate.c | 14 ++++---------- 1 files changed, 4 insertions(+), 10 deletions(-) diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c index 0c73695..abb5bc7 100644 --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -313,17 +313,11 @@ struct operand { enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type; unsigned int bytes; - /* Up to 128-byte operand value, addressable as ulong or uint32_t[]. */ - union { - unsigned long val; - uint32_t bigval[4]; - }; + /* Operand value. */ + unsigned long val; - /* Up to 128-byte operand value, addressable as ulong or uint32_t[]. */ - union { - unsigned long orig_val; - uint32_t orig_bigval[4]; - }; + /* Original operand value. */ + unsigned long orig_val; union { /* OP_REG: Pointer to register field. */ -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |