diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-07 18:06:30 -0600 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-24 08:32:15 -0800 |
| commit | 6a243913aa46f3d60ce36c7a826562c6e40b64d7 (patch) | |
| tree | 6aebca600cd21763a6d01222922e057052397186 /include/fpu/softfloat.h | |
| parent | 88d5f550bd570cd2837c0316bea6bae8cb4b745a (diff) | |
| download | focaccia-qemu-6a243913aa46f3d60ce36c7a826562c6e40b64d7.tar.gz focaccia-qemu-6a243913aa46f3d60ce36c7a826562c6e40b64d7.zip | |
softfloat: Remove float_muladd_halve_result
All uses have been convered to float*_muladd_scalbn. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/fpu/softfloat.h')
| -rw-r--r-- | include/fpu/softfloat.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/fpu/softfloat.h b/include/fpu/softfloat.h index c34ce0477d..aa69aecfb0 100644 --- a/include/fpu/softfloat.h +++ b/include/fpu/softfloat.h @@ -120,14 +120,11 @@ bfloat16 bfloat16_squash_input_denormal(bfloat16 a, float_status *status); | Using these differs from negating an input or output before calling | the muladd function in that this means that a NaN doesn't have its | sign bit inverted before it is propagated. -| We also support halving the result before rounding, as a special -| case to support the ARM fused-sqrt-step instruction FRSQRTS. *----------------------------------------------------------------------------*/ enum { float_muladd_negate_c = 1, float_muladd_negate_product = 2, float_muladd_negate_result = 4, - float_muladd_halve_result = 8, }; /*---------------------------------------------------------------------------- |