mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06: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
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue