diff options
Diffstat (limited to 'src/math/__rem_pio2.c')
-rw-r--r-- | src/math/__rem_pio2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/__rem_pio2.c b/src/math/__rem_pio2.c index 0ef57fb5..9305be5f 100644 --- a/src/math/__rem_pio2.c +++ b/src/math/__rem_pio2.c @@ -112,7 +112,7 @@ int __rem_pio2(double x, double *y) uint32_t high; medium: /* Use a specialized rint() to get fn. Assume round-to-nearest. */ - STRICT_ASSIGN(double, fn, x*invpio2 + 0x1.8p52); + fn = x*invpio2 + 0x1.8p52; fn = fn - 0x1.8p52; // FIXME #ifdef HAVE_EFFICIENT_IRINT |