diff options
author | Stefan Weil | 2011-04-18 08:39:53 +0200 |
---|---|---|
committer | Stefan Weil | 2011-04-20 10:37:03 +0200 |
commit | 618ba8e6a1313df6a8366ac8ffee47e3f885ac90 (patch) | |
tree | f9d4131c1bfee51372cbc01aca7bf89505c57a84 /target-alpha | |
parent | Remove unused function parameters from gen_pc_load and rename the function (diff) | |
download | qemu-618ba8e6a1313df6a8366ac8ffee47e3f885ac90.tar.gz qemu-618ba8e6a1313df6a8366ac8ffee47e3f885ac90.tar.xz qemu-618ba8e6a1313df6a8366ac8ffee47e3f885ac90.zip |
Remove unused function parameter from cpu_restore_state
The previous patch removed the need for parameter puc.
Is is now unused, so remove it.
Cc: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Diffstat (limited to 'target-alpha')
-rw-r--r-- | target-alpha/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c index 9f71db4c3a..4ccb10b0f4 100644 --- a/target-alpha/op_helper.c +++ b/target-alpha/op_helper.c @@ -1374,7 +1374,7 @@ void tlb_fill (target_ulong addr, int is_write, int mmu_idx, void *retaddr) if (likely(tb)) { /* the PC is inside the translated code. It means that we have a virtual CPU fault */ - cpu_restore_state(tb, env, pc, NULL); + cpu_restore_state(tb, env, pc); } } /* Exception index and error code are already set */ |