mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
softfloat: Implement float128_to_uint32
Handling it just like float128_to_uint32_round_to_zero, that hopefully is free of bugs :) Documentation basically copied from float128_to_uint64 Signed-off-by: David Hildenbrand <david@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
4739318160
commit
e45de9922e
2 changed files with 30 additions and 0 deletions
|
@ -878,6 +878,7 @@ int64_t float128_to_int64(float128, float_status *status);
|
|||
int64_t float128_to_int64_round_to_zero(float128, float_status *status);
|
||||
uint64_t float128_to_uint64(float128, float_status *status);
|
||||
uint64_t float128_to_uint64_round_to_zero(float128, float_status *status);
|
||||
uint32_t float128_to_uint32(float128, float_status *status);
|
||||
uint32_t float128_to_uint32_round_to_zero(float128, float_status *status);
|
||||
float32 float128_to_float32(float128, float_status *status);
|
||||
float64 float128_to_float64(float128, float_status *status);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue