mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Optimize ldexp and scalbn
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/* Entry points to finite-math-only compiler runs.
|
||||
Copyright (C) 2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 2011, 2012 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -261,6 +261,13 @@ extern long double __REDIRECT_NTH (log2l, (long double), __log2l_finite);
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* ldexp. */
|
||||
extern double __REDIRECT_NTH (ldexp, (double, int), scalbn);
|
||||
extern float __REDIRECT_NTH (ldexpf, (float, int), scalbnf);
|
||||
#ifdef __MATH_DECLARE_LDOUBLE
|
||||
extern long double __REDIRECT_NTH (ldexpl, (long double, int), scalbnl);
|
||||
#endif
|
||||
|
||||
/* pow. */
|
||||
extern double __REDIRECT_NTH (pow, (double, double), __pow_finite);
|
||||
extern float __REDIRECT_NTH (powf, (float, float), __powf_finite);
|
||||
|
Reference in New Issue
Block a user