mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-06 06:27:41 -07:00
softfloat: add int128_to_float128
Based on parts_sint_to_float, implements int128_to_float128 to convert a signed 128-bit value received through an Int128 argument. Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br> Message-Id: <20220330175932.6995-5-matheus.ferst@eldorado.org.br> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
parent
f279852b89
commit
95c1b71e25
2 changed files with 30 additions and 0 deletions
|
|
@ -183,6 +183,7 @@ floatx80 int64_to_floatx80(int64_t, float_status *status);
|
|||
|
||||
float128 int32_to_float128(int32_t, float_status *status);
|
||||
float128 int64_to_float128(int64_t, float_status *status);
|
||||
float128 int128_to_float128(Int128, float_status *status);
|
||||
float128 uint64_to_float128(uint64_t, float_status *status);
|
||||
float128 uint128_to_float128(Int128, float_status *status);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue