mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
softfloat: add float128_to_int128
Implements float128_to_int128 based on parts_float_to_int logic. Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220330175932.6995-7-matheus.ferst@eldorado.org.br> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
parent
4de49ddfac
commit
bea592300b
3 changed files with 68 additions and 0 deletions
|
@ -1204,7 +1204,9 @@ floatx80 floatx80_default_nan(float_status *status);
|
|||
int32_t float128_to_int32(float128, float_status *status);
|
||||
int32_t float128_to_int32_round_to_zero(float128, float_status *status);
|
||||
int64_t float128_to_int64(float128, float_status *status);
|
||||
Int128 float128_to_int128(float128, float_status *status);
|
||||
int64_t float128_to_int64_round_to_zero(float128, float_status *status);
|
||||
Int128 float128_to_int128_round_to_zero(float128, float_status *status);
|
||||
uint64_t float128_to_uint64(float128, float_status *status);
|
||||
Int128 float128_to_uint128(float128, float_status *status);
|
||||
uint64_t float128_to_uint64_round_to_zero(float128, float_status *status);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue