Merge branch 'master' of ssh://sourceware.org/git/glibc

This commit is contained in:
Ulrich Drepper 2011-10-22 13:18:08 -04:00
commit dbc36f153e
5 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2011-10-22 Andreas Schwab <schwab@linux-m68k.org>
* math/s_nan.c: Undef __nan.
* math/s_nanf.c: Undef __nanf.
* math/s_nanl.c: Undef __nanl.
* sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
"math_private.h".
2011-10-22 Ulrich Drepper <drepper@gmail.com>
* math/s_catan.c: Add branch predictions.

View File

@ -25,6 +25,7 @@
#include <ieee754.h>
#undef __nan
double
__nan (const char *tagp)
{

View File

@ -25,6 +25,7 @@
#include <ieee754.h>
#undef __nanf
float
__nanf (const char *tagp)
{

View File

@ -25,6 +25,7 @@
#include <ieee754.h>
#undef __nanl
long double
__nanl (const char *tagp)
{

View File

@ -59,6 +59,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <math.h>
#include "math_private.h"
#include <math_ldbl_opt.h>