KVM: x86 emulator: initialize src.val and dst.val for register operands
This lets us treat the case where mod == 3 in the same manner as other cases. Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
Родитель
a79d2f1805
Коммит
66b8550573
|
@ -1001,6 +1001,7 @@ done_prefixes:
|
|||
*/
|
||||
if ((c->d & ModRM) && c->modrm_mod == 3) {
|
||||
c->src.type = OP_REG;
|
||||
c->src.val = c->modrm_val;
|
||||
break;
|
||||
}
|
||||
c->src.type = OP_MEM;
|
||||
|
@ -1044,6 +1045,7 @@ done_prefixes:
|
|||
case DstMem:
|
||||
if ((c->d & ModRM) && c->modrm_mod == 3) {
|
||||
c->dst.type = OP_REG;
|
||||
c->dst.val = c->dst.orig_val = c->modrm_val;
|
||||
break;
|
||||
}
|
||||
c->dst.type = OP_MEM;
|
||||
|
|
Загрузка…
Ссылка в новой задаче