diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-03 13:51:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-03 13:51:12 +0000 |
commit | b994ff9e32473ef3779cb23b4974295f3ba08aef (patch) | |
tree | b25aec85165e003e4fc2a04480a2fba63d3e1c00 /libm/Makefile.in | |
parent | 15a971616c3e2f373264d0a2e4cd87aa11042737 (diff) |
libm: remove scalbln implementation, it seems to be less correct than scalbn.
instead, either alias scalbln to scalbn if int == long on this arch, or
just call scalbn form scalbln.
text data bss dec hex filename
- 45297 180 4 45481 b1a9 lib/libm.so
+ 44969 180 4 45153 b061 lib/libm.so
Diffstat (limited to 'libm/Makefile.in')
-rw-r--r-- | libm/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libm/Makefile.in b/libm/Makefile.in index 9cbe82c84..c232d9182 100644 --- a/libm/Makefile.in +++ b/libm/Makefile.in @@ -72,8 +72,7 @@ libm_CSRC := \ s_fpclassify.c s_fpclassifyf.c s_signbit.c s_signbitf.c \ s_isnan.c s_isnanf.c s_isinf.c s_isinff.c s_finitef.c \ s_fdim.c s_fma.c s_fmax.c s_fmin.c \ - s_remquo.c s_scalbln.c w_exp2.c -# REMOVED: w_gamma_r.c + s_remquo.c w_exp2.c FL_MOBJ := \ acosf.o acoshf.o asinf.o asinhf.o atan2f.o atanf.o atanhf.o cbrtf.o \ ceilf.o copysignf.o cosf.o coshf.o erfcf.o erff.o exp2f.o expf.o \ |