mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
softfloat: Use uint16 consistently
Prepares for uint16 replacement. Signed-off-by: Andreas Färber <andreas.faerber@web.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
e2d8830efc
commit
38641f8f54
2 changed files with 6 additions and 6 deletions
|
@ -6011,10 +6011,10 @@ unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM )
|
|||
return res;
|
||||
}
|
||||
|
||||
unsigned int float32_to_uint16_round_to_zero( float32 a STATUS_PARAM )
|
||||
uint16 float32_to_uint16_round_to_zero( float32 a STATUS_PARAM )
|
||||
{
|
||||
int64_t v;
|
||||
unsigned int res;
|
||||
uint16 res;
|
||||
|
||||
v = float32_to_int64_round_to_zero(a STATUS_VAR);
|
||||
if (v < 0) {
|
||||
|
@ -6065,10 +6065,10 @@ unsigned int float64_to_uint32_round_to_zero( float64 a STATUS_PARAM )
|
|||
return res;
|
||||
}
|
||||
|
||||
unsigned int float64_to_uint16_round_to_zero( float64 a STATUS_PARAM )
|
||||
uint16 float64_to_uint16_round_to_zero( float64 a STATUS_PARAM )
|
||||
{
|
||||
int64_t v;
|
||||
unsigned int res;
|
||||
uint16 res;
|
||||
|
||||
v = float64_to_int64_round_to_zero(a STATUS_VAR);
|
||||
if (v < 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue