From: aurel32 Date: Sat, 20 Dec 2008 23:41:32 +0000 (+0000) Subject: softfloat-native: fix type of float_rounding_mode X-Git-Tag: stefano.display-merge-end~326 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e872aa811ae24fb82451f19485682022ccf0db83;p=qemu-xen-4.4-testing.git softfloat-native: fix type of float_rounding_mode fegetround() and fesetround() are using an int type. Change the type of float_rounding_mode and floatx80_rounding_precision in the float_status structure for consistency. Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6115 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/fpu/softfloat-native.h b/fpu/softfloat-native.h index c885f1b51..cf2da4c25 100644 --- a/fpu/softfloat-native.h +++ b/fpu/softfloat-native.h @@ -140,9 +140,9 @@ enum { #endif typedef struct float_status { - signed char float_rounding_mode; + int float_rounding_mode; #ifdef FLOATX80 - signed char floatx80_rounding_precision; + int floatx80_rounding_precision; #endif } float_status;