From: Sheng Yang Date: Tue, 28 Sep 2010 08:33:32 +0000 (+0800) Subject: KVM: x86 emulator: Eliminate compilation warning in x86_decode_insn() X-Git-Tag: v2.6.37-rc1~142^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7129eecac10681f69cb00c0323ee915feceb57eb;p=profile%2Fivi%2Fkernel-x86-ivi.git 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 Signed-off-by: Marcelo Tosatti --- diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index aead72e..d0df25d 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c @@ -798,7 +798,7 @@ done: static void fetch_bit_operand(struct decode_cache *c) { - long sv, mask; + long sv = 0, mask; if (c->dst.type == OP_MEM && c->src.type == OP_REG) { mask = ~(c->dst.bytes * 8 - 1);