summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--target/i386/hvf/hvf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/hvf/hvf.c b/target/i386/hvf/hvf.c
index 72cb45a5c9..010866ed22 100644
--- a/target/i386/hvf/hvf.c
+++ b/target/i386/hvf/hvf.c
@@ -749,7 +749,7 @@ int hvf_vcpu_exec(CPUState *cpu)
                 } else if (size == 4) {
                     RAX(env) = (uint32_t)val;
                 } else {
-                    VM_PANIC("size");
+                    RAX(env) = (uint64_t)val;
                 }
                 RIP(env) += ins_len;
                 store_regs(cpu);