diff options
author | dim <dim@FreeBSD.org> | 2012-08-11 15:47:22 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-08-11 15:47:22 +0000 |
commit | c88a41061f74c31f13da5dd0358685499d8dbb06 (patch) | |
tree | 4164dda0327a8dc2c0c3852c844494ea14ce4cf5 /lib/msun/src/e_rem_pio2f.c | |
parent | e7c56ae4368889c0bb9babc7cb9839ac04ba1101 (diff) | |
download | FreeBSD-src-c88a41061f74c31f13da5dd0358685499d8dbb06.zip FreeBSD-src-c88a41061f74c31f13da5dd0358685499d8dbb06.tar.gz |
Add __always_inline to __ieee754_rem_pio2() and __ieee754_rem_pio2f(),
since some older versions of gcc refuse to inline these otherwise.
Requested by: bde
MFC after: 1 week
Diffstat (limited to 'lib/msun/src/e_rem_pio2f.c')
-rw-r--r-- | lib/msun/src/e_rem_pio2f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/e_rem_pio2f.c b/lib/msun/src/e_rem_pio2f.c index bd12186..f1ee7a0 100644 --- a/lib/msun/src/e_rem_pio2f.c +++ b/lib/msun/src/e_rem_pio2f.c @@ -41,7 +41,7 @@ pio2_1 = 1.57079631090164184570e+00, /* 0x3FF921FB, 0x50000000 */ pio2_1t = 1.58932547735281966916e-08; /* 0x3E5110b4, 0x611A6263 */ #ifdef INLINE_REM_PIO2F -static __inline +static __inline __always_inline #endif int __ieee754_rem_pio2f(float x, double *y) |