]> xenbits.xensource.com Git - qemu-xen-4.4-testing.git/commitdiff
Fix typo in BSD FP rounding mode names.
authorpbrook <pbrook>
Fri, 28 Apr 2006 15:26:51 +0000 (15:26 +0000)
committerpbrook <pbrook>
Fri, 28 Apr 2006 15:26:51 +0000 (15:26 +0000)
fpu/softfloat-native.h

index a246eaf16cc1eb85e0c4690e995051c3520f1339..b0264d52e15c65caae636d94751acec82f7d6508 100644 (file)
@@ -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 {