Message ID | 1740126987-8483-16-git-send-email-liuwe@linux.microsoft.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Factor out HVF's instruction emulator | expand |
diff --git a/target/i386/hvf/x86_emu.c b/target/i386/hvf/x86_emu.c index 84f97ed386..44ef068bef 100644 --- a/target/i386/hvf/x86_emu.c +++ b/target/i386/hvf/x86_emu.c @@ -1240,10 +1240,6 @@ static void init_cmd_handler(void) bool exec_instruction(CPUX86State *env, struct x86_decode *ins) { - /*if (hvf_vcpu_id(cs)) - printf("%d, %llx: exec_instruction %s\n", hvf_vcpu_id(cs), env->eip, - decode_cmd_to_string(ins->cmd));*/ - if (!_cmd_handler[ins->cmd].handler) { printf("Unimplemented handler (%llx) for %d (%x %x) \n", env->eip, ins->cmd, ins->opcode[0],
Signed-off-by: Wei Liu <liuwe@linux.microsoft.com> --- target/i386/hvf/x86_emu.c | 4 ---- 1 file changed, 4 deletions(-)