1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Finish ilogb changes

[BZ# 6794]
	* sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
	* sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
	Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.

	* sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
	* sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
	Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.

	* sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
	* sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.

	* sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
	* sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
	Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
This commit is contained in:
Andreas Jaeger
2012-04-18 09:46:20 +02:00
parent e5270c239d
commit 7a99a61461
6 changed files with 26 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
/* Software floating-point emulation.
ilogbl(x, exp)
Copyright (C) 1999 Free Software Foundation, Inc.
Copyright (C) 1999, 2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek (jj@ultra.linux.cz).
@@ -28,7 +28,7 @@
#include "quad.h"
#include <math.h>
int __ilogbl(long double x)
int __ieee754_ilogbl (long double x)
{
FP_DECL_EX;
FP_DECL_Q(X);
@@ -77,5 +77,3 @@ int __ilogbl(long double x)
return FP_ILOGBNAN;
}
}
weak_alias (__ilogbl, ilogbl)