diff options
| author | Peter Maydell | 2011-06-16 18:37:14 +0200 |
|---|---|---|
| committer | Riku Voipio | 2011-06-21 19:30:10 +0200 |
| commit | 2aec3a27d78075c4b4c44a241f32f27e9a7b9a8a (patch) | |
| tree | cd12ef327014aaee323e4dc7b9aaf5c225b0cf36 /linux-user | |
| parent | linux-user: Bump do_syscall() up to 8 syscall arguments (diff) | |
| download | qemu-2aec3a27d78075c4b4c44a241f32f27e9a7b9a8a.tar.gz qemu-2aec3a27d78075c4b4c44a241f32f27e9a7b9a8a.tar.xz qemu-2aec3a27d78075c4b4c44a241f32f27e9a7b9a8a.zip | |
linux-user/signal.c: Remove only-ever-set variable fpu_save_addr
Move the access of fpu_save into the commented out skeleton code for
restoring FPU registers on SPARC sigreturn, thus silencing a gcc
4.6 "variable set but never used" warning.
(This doesn't affect the calculation of 'err' because in fact
__get_user() can never fail.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Diffstat (limited to 'linux-user')
| -rw-r--r-- | linux-user/signal.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linux-user/signal.c b/linux-user/signal.c index cb7138f1cf..4edd974ce1 100644 --- a/linux-user/signal.c +++ b/linux-user/signal.c @@ -2080,7 +2080,6 @@ long do_sigreturn(CPUState *env) uint32_t up_psr, pc, npc; target_sigset_t set; sigset_t host_set; - abi_ulong fpu_save_addr; int err, i; sf_addr = env->regwptr[UREG_FP]; @@ -2120,10 +2119,11 @@ long do_sigreturn(CPUState *env) err |= __get_user(env->regwptr[i + UREG_I0], &sf->info.si_regs.u_regs[i+8]); } - err |= __get_user(fpu_save_addr, &sf->fpu_save); - - //if (fpu_save) - // err |= restore_fpu_state(env, fpu_save); + /* FIXME: implement FPU save/restore: + * __get_user(fpu_save, &sf->fpu_save); + * if (fpu_save) + * err |= restore_fpu_state(env, fpu_save); + */ /* This is pretty much atomic, no amount locking would prevent * the races which exist anyways. |
