aboutsummaryrefslogtreecommitdiff
path: root/target/alpha
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2019-01-06 08:39:32 +1000
committerRichard Henderson <richard.henderson@linaro.org>2019-01-08 09:04:30 +1000
commit29eb5280786832bc46df7a2f62e67bca225eb8ae (patch)
tree3c668abe9bfd7f359721ffd696bf3a4a36470a61 /target/alpha
parentb7ed683a8d53b68b5b2f376789b20d2fe91d544b (diff)
downloadqemu-29eb5280786832bc46df7a2f62e67bca225eb8ae.zip
qemu-29eb5280786832bc46df7a2f62e67bca225eb8ae.tar.gz
qemu-29eb5280786832bc46df7a2f62e67bca225eb8ae.tar.bz2
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: f3d3aad4a92 Fixes: https://bugs.launchpad.net/bugs/1701835 Reported-by: Bruno Haible <bruno@clisp.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/alpha')
-rw-r--r--target/alpha/cpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/alpha/cpu.c b/target/alpha/cpu.c
index a953897..1fd95d6 100644
--- a/target/alpha/cpu.c
+++ b/target/alpha/cpu.c
@@ -205,9 +205,9 @@ static void alpha_cpu_initfn(Object *obj)
env->lock_addr = -1;
#if defined(CONFIG_USER_ONLY)
env->flags = ENV_FLAG_PS_USER | ENV_FLAG_FEN;
- cpu_alpha_store_fpcr(env, (FPCR_INVD | FPCR_DZED | FPCR_OVFD
- | FPCR_UNFD | FPCR_INED | FPCR_DNOD
- | FPCR_DYN_NORMAL));
+ cpu_alpha_store_fpcr(env, (uint64_t)(FPCR_INVD | FPCR_DZED | FPCR_OVFD
+ | FPCR_UNFD | FPCR_INED | FPCR_DNOD
+ | FPCR_DYN_NORMAL) << 32);
#else
env->flags = ENV_FLAG_PAL_MODE | ENV_FLAG_FEN;
#endif