softfloat: Resolve type mismatches between declaration and implementation
authorAndreas Färber <andreas.faerber@web.de>
Mon, 7 Mar 2011 00:34:05 +0000 (01:34 +0100)
committerAurelien Jarno <aurelien@aurel32.net>
Mon, 21 Mar 2011 20:46:10 +0000 (21:46 +0100)
commitfb8632802100eff97638794ddc3a676b487fac3d
tree45ff2e7e32a8a8d3346cdef12aa47ad973248d0a
parenta876f66bc805bd91721c722678e9a3fcfd17300a
softfloat: Resolve type mismatches between declaration and implementation

The original SoftFloat 2.0b library avoided the use of custom integer types
in its public headers. This requires the definitions of int{8,16,32,64} to
match the assumptions in the declarations. This breaks on BeOS R5 and Haiku/x86,
where int32 is defined in {be,os}/support/SupportDefs.h in terms of a long
rather than an int. Spotted by Michael Lotz.

Since QEMU already breaks this distinction by defining those types just above,
do use them for consistency and to allow #ifndef'ing them out as done for
[u]int16 on AIX.

Cc: Michael Lotz <mmlr@mlotz.ch>
Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
fpu/softfloat.h