mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
target/arm: Remove ah_fp_status
Replace with fp_status[FPST_AH]. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20250129013857.135256-11-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
fc25b174d5
commit
ee4316f65b
3 changed files with 7 additions and 8 deletions
|
@ -556,9 +556,9 @@ static void arm_cpu_reset_hold(Object *obj, ResetType type)
|
|||
arm_set_default_fp_behaviours(&env->vfp.fp_status_f16_a32);
|
||||
arm_set_default_fp_behaviours(&env->vfp.fp_status_f16_a64);
|
||||
arm_set_default_fp_behaviours(&env->vfp.fp_status[FPST_STD_F16]);
|
||||
arm_set_ah_fp_behaviours(&env->vfp.ah_fp_status);
|
||||
set_flush_to_zero(1, &env->vfp.ah_fp_status);
|
||||
set_flush_inputs_to_zero(1, &env->vfp.ah_fp_status);
|
||||
arm_set_ah_fp_behaviours(&env->vfp.fp_status[FPST_AH]);
|
||||
set_flush_to_zero(1, &env->vfp.fp_status[FPST_AH]);
|
||||
set_flush_inputs_to_zero(1, &env->vfp.fp_status[FPST_AH]);
|
||||
arm_set_ah_fp_behaviours(&env->vfp.fp_status[FPST_AH_F16]);
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue