diff options
author | Andreas Färber <andreas.faerber@web.de> | 2011-08-28 20:24:34 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-09-03 17:47:14 +0000 |
commit | 9f8d2a093fa5c8d29934a5f5f2ff611907a83cef (patch) | |
tree | a8e40c44980b5f6dd5c612d6f31f21c1f22474e2 /fpu/softfloat.h | |
parent | 38641f8f54117fc6a846ca9b62b2611aabf2d6fa (diff) |
softfloat: Use uint32 consistently
Prepares for uint32 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>
Diffstat (limited to 'fpu/softfloat.h')
-rw-r--r-- | fpu/softfloat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpu/softfloat.h b/fpu/softfloat.h index e1bbe01127..618ddee569 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -216,8 +216,8 @@ void float_raise( int8 flags STATUS_PARAM); *----------------------------------------------------------------------------*/ float32 int32_to_float32( int32 STATUS_PARAM ); float64 int32_to_float64( int32 STATUS_PARAM ); -float32 uint32_to_float32( unsigned int STATUS_PARAM ); -float64 uint32_to_float64( unsigned int STATUS_PARAM ); +float32 uint32_to_float32( uint32 STATUS_PARAM ); +float64 uint32_to_float64( uint32 STATUS_PARAM ); floatx80 int32_to_floatx80( int32 STATUS_PARAM ); float128 int32_to_float128( int32 STATUS_PARAM ); float32 int64_to_float32( int64 STATUS_PARAM ); |