mirror of
https://github.com/xemu-project/xemu.git
synced 2024-12-19 09:48:16 +00:00
target/riscv: Only set TB flags with FP status if enabled
Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Palmer Dabbelt <palmerdabbelt@google.com> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
This commit is contained in:
parent
0736febb2d
commit
e28eaed879
@ -332,7 +332,10 @@ static inline void cpu_get_tb_cpu_state(CPURISCVState *env, target_ulong *pc,
|
|||||||
#ifdef CONFIG_USER_ONLY
|
#ifdef CONFIG_USER_ONLY
|
||||||
*flags = TB_FLAGS_MSTATUS_FS;
|
*flags = TB_FLAGS_MSTATUS_FS;
|
||||||
#else
|
#else
|
||||||
*flags = cpu_mmu_index(env, 0) | (env->mstatus & MSTATUS_FS);
|
*flags = cpu_mmu_index(env, 0);
|
||||||
|
if (riscv_cpu_fp_enabled(env)) {
|
||||||
|
*flags |= env->mstatus & MSTATUS_FS;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user