Commit 7918bf476b8b32a65b6d254f393e00325f2b7f4b

Authored by pbrook
1 parent 16406950

Fix typo in BSD FP rounding mode names.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1865 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 3 additions and 3 deletions
fpu/softfloat-native.h
... ... @@ -38,9 +38,9 @@ typedef union {
38 38 #if defined(_BSD) && !defined(__APPLE__)
39 39 enum {
40 40 float_round_nearest_even = FP_RN,
41   - float_round_down = FE_RM,
42   - float_round_up = FE_RP,
43   - float_round_to_zero = FE_RZ
  41 + float_round_down = FP_RM,
  42 + float_round_up = FP_RP,
  43 + float_round_to_zero = FP_RZ
44 44 };
45 45 #elif defined(__arm__)
46 46 enum {
... ...