Add files via upload

This commit is contained in:
gufe44 2019-10-26 01:53:42 +02:00 committed by GitHub
parent d4077aa131
commit c4dca1e84a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 29 additions and 29 deletions

View File

@ -114,5 +114,5 @@ cbrt(double x)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(cbrt, cbrtl);
openlibm_weak_reference(cbrt, cbrtl);
#endif

View File

@ -73,5 +73,5 @@ ceil(double x)
}
#if LDBL_MANT_DIG == 53
__weak_reference_compat(ceil, ceill);
openlibm_weak_reference(ceil, ceill);
#endif

View File

@ -85,5 +85,5 @@ cos(double x)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(cos, cosl);
openlibm_weak_reference(cos, cosl);
#endif

View File

@ -43,5 +43,5 @@ cproj(double complex z)
}
#if LDBL_MANT_DIG == 53
__weak_reference_compat(cproj, cprojl);
openlibm_weak_reference(cproj, cprojl);
#endif

View File

@ -110,5 +110,5 @@ csqrt(double complex z)
}
#if LDBL_MANT_DIG == 53
__weak_reference_compat(csqrt, csqrtl);
openlibm_weak_reference(csqrt, csqrtl);
#endif

View File

@ -392,5 +392,5 @@ exp2(double x)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(exp2, exp2l);
openlibm_weak_reference(exp2, exp2l);
#endif

View File

@ -74,5 +74,5 @@ floor(double x)
}
#if LDBL_MANT_DIG == 53
__weak_reference_compat(floor, floorl);
openlibm_weak_reference(floor, floorl);
#endif

View File

@ -280,5 +280,5 @@ fma(double x, double y, double z)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(fma, fmal);
openlibm_weak_reference(fma, fmal);
#endif

View File

@ -52,5 +52,5 @@ frexp(double x, int *eptr)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(frexp, frexpl);
openlibm_weak_reference(frexp, frexpl);
#endif

View File

@ -63,4 +63,4 @@ __isinfl(long double e)
}
#endif
__weak_reference_compat(__isinff, isinff);
openlibm_weak_reference(__isinff, isinff);

View File

@ -64,4 +64,4 @@ __isnanl(long double e)
}
#endif
__weak_reference_compat(__isnanf, isnanf);
openlibm_weak_reference(__isnanf, isnanf);

View File

@ -45,5 +45,5 @@ logb(double x)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(logb, logbl);
openlibm_weak_reference(logb, logbl);
#endif

View File

@ -120,5 +120,5 @@ nanf(const char *s)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(nan, nanl);
openlibm_weak_reference(nan, nanl);
#endif

View File

@ -77,7 +77,7 @@ nextafter(double x, double y)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(nextafter, nexttoward);
__weak_reference_compat(nextafter, nexttowardl);
__weak_reference_compat(nextafter, nextafterl);
openlibm_weak_reference(nextafter, nexttoward);
openlibm_weak_reference(nextafter, nexttowardl);
openlibm_weak_reference(nextafter, nextafterl);
#endif

View File

@ -77,4 +77,4 @@ nextafterl(long double x, long double y)
return ux.e;
}
__strong_reference(nextafterl, nexttowardl);
openlibm_strong_reference(nextafterl, nexttowardl);

View File

@ -154,5 +154,5 @@ fixup:
}
#if LDBL_MANT_DIG == 53
__weak_reference_compat(remquo, remquol);
openlibm_weak_reference(remquo, remquol);
#endif

View File

@ -88,5 +88,5 @@ rint(double x)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(rint, rintl);
openlibm_weak_reference(rint, rintl);
#endif

View File

@ -59,8 +59,8 @@ scalbn (double x, int n)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(scalbn, ldexpl);
__weak_reference_compat(scalbn, scalbnl);
openlibm_weak_reference(scalbn, ldexpl);
openlibm_weak_reference(scalbn, scalbnl);
#endif
__strong_reference(scalbn, ldexp);
openlibm_strong_reference(scalbn, ldexp);

View File

@ -54,4 +54,4 @@ scalbnf (float x, int n)
return x*twom25;
}
__strong_reference(scalbnf, ldexpf);
openlibm_strong_reference(scalbnf, ldexpf);

View File

@ -67,4 +67,4 @@ scalbnl (long double x, int n)
return u.e*0x1p-128;
}
__strong_reference(scalbnl, ldexpl);
openlibm_strong_reference(scalbnl, ldexpl);

View File

@ -85,5 +85,5 @@ sin(double x)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(sin, sinl);
openlibm_weak_reference(sin, sinl);
#endif

View File

@ -146,5 +146,5 @@ sincos(double x, double * s, double * c)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(sincos, sincosl);
openlibm_weak_reference(sincos, sincosl);
#endif

View File

@ -79,5 +79,5 @@ tan(double x)
}
#if (LDBL_MANT_DIG == 53)
__weak_reference_compat(tan, tanl);
openlibm_weak_reference(tan, tanl);
#endif

View File

@ -63,5 +63,5 @@ trunc(double x)
}
#if LDBL_MANT_DIG == 53
__weak_reference_compat(trunc, truncl);
openlibm_weak_reference(trunc, truncl);
#endif

View File

@ -21,5 +21,5 @@ cabs(double complex z)
}
#if LDBL_MANT_DIG == 53
__weak_reference_compat(cabs, cabsl);
openlibm_weak_reference(cabs, cabsl);
#endif