mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 06:13:46 +08:00
Fix typo in BSD FP rounding mode names.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1865 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
1640695026
commit
7918bf476b
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user