]> git.ipfire.org Git - thirdparty/qemu.git/blobdiff - target-microblaze/op_helper.c
translate-all: Change cpu_restore_state() argument to CPUState
[thirdparty/qemu.git] / target-microblaze / op_helper.c
index f47613241d77c76f075e8eb58271c89df88b77ce..f8fb7f91691887ea4d82eb4b7898ddabe1208085 100644 (file)
@@ -49,12 +49,9 @@ void tlb_fill(CPUState *cs, target_ulong addr, int is_write, int mmu_idx,
 
     ret = mb_cpu_handle_mmu_fault(cs, addr, is_write, mmu_idx);
     if (unlikely(ret)) {
-        MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
-        CPUMBState *env = &cpu->env;
-
         if (retaddr) {
             /* now we have a real cpu fault */
-            cpu_restore_state(env, retaddr);
+            cpu_restore_state(cs, retaddr);
         }
         cpu_loop_exit(cs);
     }