diff options
| author | Andreas Färber | 2013-09-01 16:51:34 +0200 |
|---|---|---|
| committer | Andreas Färber | 2014-03-13 19:20:47 +0100 |
| commit | 3f38f309b22d9a30b5b427501eb3d522c439482e (patch) | |
| tree | 9536fe55f500c6f99879a1bc35d2b5efbb22c706 /target-mips | |
| parent | cpu-exec: Change cpu_loop_exit() argument to CPUState (diff) | |
| download | qemu-3f38f309b22d9a30b5b427501eb3d522c439482e.tar.gz qemu-3f38f309b22d9a30b5b427501eb3d522c439482e.tar.xz qemu-3f38f309b22d9a30b5b427501eb3d522c439482e.zip | |
translate-all: Change cpu_restore_state() argument to CPUState
This lets us drop some local variables in tlb_fill() functions.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-mips')
| -rw-r--r-- | target-mips/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index c65350187f..de5a22329a 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -48,7 +48,7 @@ static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env, if (pc) { /* now we have a real cpu fault */ - cpu_restore_state(env, pc); + cpu_restore_state(cs, pc); } cpu_loop_exit(cs); |
