| Age | Commit message (Collapse) | Author |
|
While it may seem pointless, it the rouding mode is set to round towards
minus infinity then acos(-1) calculates atan2(sqrt(1.0 - 1.0), -1) the subtract
generates -0.0 which sqrt() preserves.
atan2(-0, -1) is -pi, but acos(-1) is expected to be +pi.
This might 'fix' the test failures seen in some environments, but they
are not failing due to an obvously incorrent x87 rounding mode.
|
|
|
|
|
|
|
|
clang, okay?
|
|
|
|
|
|
|
|
|
|
aliases for fminl and fmaxl, fabsl is here just for symmetry.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
move the include of fenv.h into the #ifdef __HAVE_LONG_DOUBLE block
and also provide a -DHAVE_FENV_H from the makefile for archs that have
it - leaving out exception settings on architectures that do not provide
it.
|
|
|
|
Fixes fmodl() test failure on sparc64
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
functions. They are expected to be implement properly at a later time.
|
|
Basic test case for the fmod family.
|
|
|
|
|
|
in preparation for adjusting the default based on the main binary
version.
|
|
|
|
|
|
|
|
|
|
of unused static variables and functions. Disable this for some external
code and for ioconf.c in the kernel.
|
|
vs big PIC mode. Retire -DPIC and -DBIGPIC.
|
|
long double), so ifdef it out in the sparc64 compat library build. I hope
the nextafter alias is set up correctly (where?) - and someone please
suggest a better way for this if clause.
|
|
|
|
|
|
|
|
add a strong alias for nextafterl to nextafter
|