]> Git Repo - qemu.git/blobdiff - target-mips/op_helper.c
cpu-exec: Change cpu_loop_exit() argument to CPUState
[qemu.git] / target-mips / op_helper.c
index 8c050fc2471e0d4c187654f017c4897803eaf4e6..c65350187f66e99403cdf5f2477fcce43e37ee0e 100644 (file)
@@ -51,7 +51,7 @@ static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env,
         cpu_restore_state(env, pc);
     }
 
-    cpu_loop_exit(env);
+    cpu_loop_exit(cs);
 }
 
 static inline void QEMU_NORETURN do_raise_exception(CPUMIPSState *env,
@@ -280,7 +280,7 @@ static inline hwaddr do_translate_address(CPUMIPSState *env,
     lladdr = cpu_mips_translate_address(env, address, rw);
 
     if (lladdr == -1LL) {
-        cpu_loop_exit(env);
+        cpu_loop_exit(CPU(mips_env_get_cpu(env)));
     } else {
         return lladdr;
     }
This page took 0.022642 seconds and 4 git commands to generate.