mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a dumbass mistake. I had the 'set' and 'get' reversed in the
fpsetround/fpgetround macro pairs.
This commit is contained in:
parent
6e9a9b9f52
commit
59cc2230c6
1 changed files with 2 additions and 2 deletions
|
|
@ -266,8 +266,8 @@ __fpsetsticky(fp_except_t _m)
|
|||
|
||||
#if !defined(__IEEEFP_NOINLINES__) && !defined(__cplusplus) && defined(__GNUC__)
|
||||
|
||||
#define fpsetround() __fpsetround()
|
||||
#define fpgetround(_m) __fpgetround(_m)
|
||||
#define fpgetround() __fpgetround()
|
||||
#define fpsetround(_m) __fpsetround(_m)
|
||||
#define fpgetprec() __fpgetprec()
|
||||
#define fpsetprec(_m) __fpsetprec(_m)
|
||||
#define fpgetmask() __fpgetmask()
|
||||
|
|
|
|||
Loading…
Reference in a new issue