mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
fpu: Replace int64 typedef with int64_t
Replace the int64 softfloat-specific typedef with int64_t. This change was made with find include fpu target-* -name '*.[ch]' | xargs sed -i -e 's/\bint64\b/int64_t/g' together with manual removal of the typedef definition, and manual undoing of some mis-hits where macro arguments were being used for token pasting rather than as a type. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Acked-by: Leon Alrae <leon.alrae@imgtec.com> Message-id: 1452603315-27030-2-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
3c2c85ec4b
commit
f42c222482
3 changed files with 29 additions and 30 deletions
|
@ -104,7 +104,6 @@ typedef int8_t int8;
|
|||
typedef unsigned int uint32;
|
||||
typedef signed int int32;
|
||||
typedef uint64_t uint64;
|
||||
typedef int64_t int64;
|
||||
|
||||
#define LIT64( a ) a##LL
|
||||
|
||||
|
@ -380,10 +379,10 @@ int32 float32_to_int32(float32, float_status *status);
|
|||
int32 float32_to_int32_round_to_zero(float32, float_status *status);
|
||||
uint32 float32_to_uint32(float32, float_status *status);
|
||||
uint32 float32_to_uint32_round_to_zero(float32, float_status *status);
|
||||
int64 float32_to_int64(float32, float_status *status);
|
||||
int64_t float32_to_int64(float32, float_status *status);
|
||||
uint64 float32_to_uint64(float32, float_status *status);
|
||||
uint64 float32_to_uint64_round_to_zero(float32, float_status *status);
|
||||
int64 float32_to_int64_round_to_zero(float32, float_status *status);
|
||||
int64_t float32_to_int64_round_to_zero(float32, float_status *status);
|
||||
float64 float32_to_float64(float32, float_status *status);
|
||||
floatx80 float32_to_floatx80(float32, float_status *status);
|
||||
float128 float32_to_float128(float32, float_status *status);
|
||||
|
@ -492,8 +491,8 @@ int32 float64_to_int32(float64, float_status *status);
|
|||
int32 float64_to_int32_round_to_zero(float64, float_status *status);
|
||||
uint32 float64_to_uint32(float64, float_status *status);
|
||||
uint32 float64_to_uint32_round_to_zero(float64, float_status *status);
|
||||
int64 float64_to_int64(float64, float_status *status);
|
||||
int64 float64_to_int64_round_to_zero(float64, float_status *status);
|
||||
int64_t float64_to_int64(float64, float_status *status);
|
||||
int64_t float64_to_int64_round_to_zero(float64, float_status *status);
|
||||
uint64 float64_to_uint64(float64 a, float_status *status);
|
||||
uint64 float64_to_uint64_round_to_zero(float64 a, float_status *status);
|
||||
float32 float64_to_float32(float64, float_status *status);
|
||||
|
@ -598,8 +597,8 @@ extern const float64 float64_default_nan;
|
|||
*----------------------------------------------------------------------------*/
|
||||
int32 floatx80_to_int32(floatx80, float_status *status);
|
||||
int32 floatx80_to_int32_round_to_zero(floatx80, float_status *status);
|
||||
int64 floatx80_to_int64(floatx80, float_status *status);
|
||||
int64 floatx80_to_int64_round_to_zero(floatx80, float_status *status);
|
||||
int64_t floatx80_to_int64(floatx80, float_status *status);
|
||||
int64_t floatx80_to_int64_round_to_zero(floatx80, float_status *status);
|
||||
float32 floatx80_to_float32(floatx80, float_status *status);
|
||||
float64 floatx80_to_float64(floatx80, float_status *status);
|
||||
float128 floatx80_to_float128(floatx80, float_status *status);
|
||||
|
@ -683,8 +682,8 @@ extern const floatx80 floatx80_default_nan;
|
|||
*----------------------------------------------------------------------------*/
|
||||
int32 float128_to_int32(float128, float_status *status);
|
||||
int32 float128_to_int32_round_to_zero(float128, float_status *status);
|
||||
int64 float128_to_int64(float128, float_status *status);
|
||||
int64 float128_to_int64_round_to_zero(float128, float_status *status);
|
||||
int64_t float128_to_int64(float128, float_status *status);
|
||||
int64_t float128_to_int64_round_to_zero(float128, float_status *status);
|
||||
float32 float128_to_float32(float128, float_status *status);
|
||||
float64 float128_to_float64(float128, float_status *status);
|
||||
floatx80 float128_to_floatx80(float128, float_status *status);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue