diff options
author | nsz <nsz@port70.net> | 2012-03-19 19:26:31 +0100 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-19 19:26:31 +0100 |
commit | 2e8c8fbe7d65ba0026cb084dc8570d94cbc908ff (patch) | |
tree | 59b2813cfc9f1e2d36d80d6c8b39c404fc9cdbe7 /src/math/sinl.c | |
parent | c3587effe27a3ac8c1406f064b7705963be9887a (diff) | |
download | musl-2e8c8fbe7d65ba0026cb084dc8570d94cbc908ff.tar.gz musl-2e8c8fbe7d65ba0026cb084dc8570d94cbc908ff.tar.xz musl-2e8c8fbe7d65ba0026cb084dc8570d94cbc908ff.zip |
don't inline __rem_pio2l so the code size is smaller
Diffstat (limited to 'src/math/sinl.c')
-rw-r--r-- | src/math/sinl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/math/sinl.c b/src/math/sinl.c index 0b1aeb75..7e0b44f4 100644 --- a/src/math/sinl.c +++ b/src/math/sinl.c @@ -34,8 +34,6 @@ long double sinl(long double x) return sin(x); } #elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384 -#include "__rem_pio2l.h" - long double sinl(long double x) { union IEEEl2bits z; |