mirror of https://github.com/xemu-project/xemu.git
target/alpha: Fix user-only initialization of fpcr
When the representation of fpcr was changed, the user-only
initialization was not updated to match. Oops.
Fixes: f3d3aad4a9
Fixes: https://bugs.launchpad.net/bugs/1701835
Reported-by: Bruno Haible <bruno@clisp.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
b7ed683a8d
commit
29eb528078
|
@ -205,9 +205,9 @@ static void alpha_cpu_initfn(Object *obj)
|
||||||
env->lock_addr = -1;
|
env->lock_addr = -1;
|
||||||
#if defined(CONFIG_USER_ONLY)
|
#if defined(CONFIG_USER_ONLY)
|
||||||
env->flags = ENV_FLAG_PS_USER | ENV_FLAG_FEN;
|
env->flags = ENV_FLAG_PS_USER | ENV_FLAG_FEN;
|
||||||
cpu_alpha_store_fpcr(env, (FPCR_INVD | FPCR_DZED | FPCR_OVFD
|
cpu_alpha_store_fpcr(env, (uint64_t)(FPCR_INVD | FPCR_DZED | FPCR_OVFD
|
||||||
| FPCR_UNFD | FPCR_INED | FPCR_DNOD
|
| FPCR_UNFD | FPCR_INED | FPCR_DNOD
|
||||||
| FPCR_DYN_NORMAL));
|
| FPCR_DYN_NORMAL) << 32);
|
||||||
#else
|
#else
|
||||||
env->flags = ENV_FLAG_PAL_MODE | ENV_FLAG_FEN;
|
env->flags = ENV_FLAG_PAL_MODE | ENV_FLAG_FEN;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue