mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 08:05:27 +08:00
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>
This commit is contained in:
parent
50933623e5
commit
7129eecac1
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user