diff options
author | Sheng Yang <sheng@linux.intel.com> | 2010-09-28 04:33:32 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-10-24 04:53:09 -0400 |
commit | 7129eecac10681f69cb00c0323ee915feceb57eb (patch) | |
tree | 2f10330574e0b3987fa60e4c7b70c0403b84e1c0 /arch/x86/kvm | |
parent | 50933623e50d8730cc1a65853c153b3b4c93b629 (diff) |
KVM: x86 emulator: Eliminate compilation warning in x86_decode_insn()
Eliminate:
arch/x86/kvm/emulate.c:801: warning: ‘sv’ may be used uninitialized in this
function
on gcc 4.1.2
Signed-off-by: Sheng Yang <sheng@linux.intel.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r-- | arch/x86/kvm/emulate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index aead72e141b4..d0df25d84acd 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c | |||
@@ -798,7 +798,7 @@ done: | |||
798 | 798 | ||
799 | static void fetch_bit_operand(struct decode_cache *c) | 799 | static void fetch_bit_operand(struct decode_cache *c) |
800 | { | 800 | { |
801 | long sv, mask; | 801 | long sv = 0, mask; |
802 | 802 | ||
803 | if (c->dst.type == OP_MEM && c->src.type == OP_REG) { | 803 | if (c->dst.type == OP_MEM && c->src.type == OP_REG) { |
804 | mask = ~(c->dst.bytes * 8 - 1); | 804 | mask = ~(c->dst.bytes * 8 - 1); |