mirror of https://github.com/xemu-project/xemu.git
target-mips/gdbstub: remove old CONFIG_SOFTFLOAT #ifndef
target-mips has been switched to softfloat only long ago, but a #ifndef CONFIG_SOFTFLOAT has been forgotten. Remove it. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
2c0d18ddd9
commit
142ab5bb87
|
@ -1105,10 +1105,6 @@ static int cpu_gdb_write_register(CPUState *env, uint8_t *mem_buf, int n)
|
||||||
env->active_fpu.fcr31 = tmp & 0xFF83FFFF;
|
env->active_fpu.fcr31 = tmp & 0xFF83FFFF;
|
||||||
/* set rounding mode */
|
/* set rounding mode */
|
||||||
RESTORE_ROUNDING_MODE;
|
RESTORE_ROUNDING_MODE;
|
||||||
#ifndef CONFIG_SOFTFLOAT
|
|
||||||
/* no floating point exception for native float */
|
|
||||||
SET_FP_ENABLE(env->active_fpu.fcr31, 0);
|
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
case 71: env->active_fpu.fcr0 = tmp; break;
|
case 71: env->active_fpu.fcr0 = tmp; break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue