diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-04-18 06:39:53 +0000 |
---|---|---|
committer | Stefan Weil <weil@mail.berlios.de> | 2011-04-20 10:37:03 +0200 |
commit | 618ba8e6a1313df6a8366ac8ffee47e3f885ac90 (patch) | |
tree | f9d4131c1bfee51372cbc01aca7bf89505c57a84 /cpu-exec.c | |
parent | e87b7cb0f0e04d7c4510564530ab00ed4db37a45 (diff) |
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 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index d57afef642..395cd8cf90 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -808,7 +808,7 @@ static inline int handle_cpu_signal(unsigned long pc, unsigned long address, if (tb) { /* the PC is inside the translated code. It means that we have a virtual CPU fault */ - cpu_restore_state(tb, env, pc, puc); + cpu_restore_state(tb, env, pc); } /* we restore the process signal mask as the sigreturn should |