mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
libm: remove unused variables for LDBL_MANT_DIG != 113
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
9f6f24403c
commit
cf825f93cc
3 changed files with 8 additions and 1 deletions
|
|
@ -86,7 +86,9 @@ long double
|
|||
coshl(long double x)
|
||||
{
|
||||
long double hi,lo,x2,x4;
|
||||
#if LDBL_MANT_DIG == 113
|
||||
double dx2;
|
||||
#endif
|
||||
uint16_t ix;
|
||||
|
||||
GET_LDBL_EXPSIGN(ix,x);
|
||||
|
|
|
|||
|
|
@ -85,7 +85,10 @@ long double
|
|||
sinhl(long double x)
|
||||
{
|
||||
long double hi,lo,x2,x4;
|
||||
double dx2,s;
|
||||
#if LDBL_MANT_DIG == 113
|
||||
double dx2;
|
||||
#endif
|
||||
double s;
|
||||
int16_t ix,jx;
|
||||
|
||||
GET_LDBL_EXPSIGN(jx,x);
|
||||
|
|
|
|||
|
|
@ -113,7 +113,9 @@ long double
|
|||
tanhl(long double x)
|
||||
{
|
||||
long double hi,lo,s,x2,x4,z;
|
||||
#if LDBL_MANT_DIG == 113
|
||||
double dx2;
|
||||
#endif
|
||||
int16_t jx,ix;
|
||||
|
||||
GET_LDBL_EXPSIGN(jx,x);
|
||||
|
|
|
|||
Loading…
Reference in a new issue