From: pbrook Date: Fri, 28 Apr 2006 15:26:51 +0000 (+0000) Subject: Fix typo in BSD FP rounding mode names. X-Git-Tag: release_0_8_1~32 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=bfcb65e659278b843f64fcc7bf4adae783d24b64;p=xenclient%2Fioemu.git Fix typo in BSD FP rounding mode names. --- diff --git a/fpu/softfloat-native.h b/fpu/softfloat-native.h index a246eaf1..b0264d52 100644 --- a/fpu/softfloat-native.h +++ b/fpu/softfloat-native.h @@ -38,9 +38,9 @@ typedef union { #if defined(_BSD) && !defined(__APPLE__) enum { float_round_nearest_even = FP_RN, - float_round_down = FE_RM, - float_round_up = FE_RP, - float_round_to_zero = FE_RZ + float_round_down = FP_RM, + float_round_up = FP_RP, + float_round_to_zero = FP_RZ }; #elif defined(__arm__) enum {