Oops, the weak reference for ceill(), floorl() and truncl() was in the

wrong file.  This broke arm and powerpc.

Reported by:	grehan
This commit is contained in:
Bruce Evans 2008-02-14 15:10:34 +00:00
parent 18d6902161
commit 5014f8ded4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176280
6 changed files with 12 additions and 12 deletions

View File

@ -70,3 +70,7 @@ ceil(double x)
INSERT_WORDS(x,i0,i1);
return x;
}
#if LDBL_MANT_DIG == 53
__weak_reference(ceil, ceill);
#endif

View File

@ -99,7 +99,3 @@ ceill(long double x)
}
return (u.e);
}
#if LDBL_MANT_DIG == 53
__weak_reference(ceil, ceill);
#endif

View File

@ -71,3 +71,7 @@ floor(double x)
INSERT_WORDS(x,i0,i1);
return x;
}
#if LDBL_MANT_DIG == 53
__weak_reference(floor, floorl);
#endif

View File

@ -99,7 +99,3 @@ floorl(long double x)
}
return (u.e);
}
#if LDBL_MANT_DIG == 53
__weak_reference(floor, floorl);
#endif

View File

@ -59,3 +59,7 @@ trunc(double x)
INSERT_WORDS(x,i0,i1);
return x;
}
#if LDBL_MANT_DIG == 53
__weak_reference(trunc, truncl);
#endif

View File

@ -66,7 +66,3 @@ truncl(long double x)
}
return (u.e);
}
#if LDBL_MANT_DIG == 53
__weak_reference(trunc, truncl);
#endif