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:
parent
18d6902161
commit
5014f8ded4
@ -70,3 +70,7 @@ ceil(double x)
|
||||
INSERT_WORDS(x,i0,i1);
|
||||
return x;
|
||||
}
|
||||
|
||||
#if LDBL_MANT_DIG == 53
|
||||
__weak_reference(ceil, ceill);
|
||||
#endif
|
||||
|
@ -99,7 +99,3 @@ ceill(long double x)
|
||||
}
|
||||
return (u.e);
|
||||
}
|
||||
|
||||
#if LDBL_MANT_DIG == 53
|
||||
__weak_reference(ceil, ceill);
|
||||
#endif
|
||||
|
@ -71,3 +71,7 @@ floor(double x)
|
||||
INSERT_WORDS(x,i0,i1);
|
||||
return x;
|
||||
}
|
||||
|
||||
#if LDBL_MANT_DIG == 53
|
||||
__weak_reference(floor, floorl);
|
||||
#endif
|
||||
|
@ -99,7 +99,3 @@ floorl(long double x)
|
||||
}
|
||||
return (u.e);
|
||||
}
|
||||
|
||||
#if LDBL_MANT_DIG == 53
|
||||
__weak_reference(floor, floorl);
|
||||
#endif
|
||||
|
@ -59,3 +59,7 @@ trunc(double x)
|
||||
INSERT_WORDS(x,i0,i1);
|
||||
return x;
|
||||
}
|
||||
|
||||
#if LDBL_MANT_DIG == 53
|
||||
__weak_reference(trunc, truncl);
|
||||
#endif
|
||||
|
@ -66,7 +66,3 @@ truncl(long double x)
|
||||
}
|
||||
return (u.e);
|
||||
}
|
||||
|
||||
#if LDBL_MANT_DIG == 53
|
||||
__weak_reference(trunc, truncl);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user