about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-02-11 13:11:40 +0000
committerUlrich Drepper <drepper@redhat.com>1998-02-11 13:11:40 +0000
commit4a7ceb5a83feade78f5a35b2f82ff1c6c8ea7fcb (patch)
treeca55af9bf0f28cc7a14419113fa87ce72b97e836 /sysdeps
parent1eb687d0b865ea0d97bb774b23a764f1c4369475 (diff)
downloadglibc-4a7ceb5a83feade78f5a35b2f82ff1c6c8ea7fcb.tar.gz
glibc-4a7ceb5a83feade78f5a35b2f82ff1c6c8ea7fcb.tar.xz
glibc-4a7ceb5a83feade78f5a35b2f82ff1c6c8ea7fcb.zip
Update.
1998-02-11 08:30  H.J. Lu  <hjl@gnu.org>

	* sysdeps/libm-ieee754/w_powl.c (__powl): Use __finitel instead
	of __finite.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/libm-ieee754/w_powl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/libm-ieee754/w_powl.c b/sysdeps/libm-ieee754/w_powl.c
index aea572d905..3529b5024c 100644
--- a/sysdeps/libm-ieee754/w_powl.c
+++ b/sysdeps/libm-ieee754/w_powl.c
@@ -44,7 +44,7 @@
 	if(x==0.0){
 	    if(y==0.0)
 	        return __kernel_standard(x,y,220); /* pow(0.0,0.0) */
-	    if(__finite(y)&&y<0.0)
+	    if(__finitel(y)&&y<0.0)
 	      if (signbit (x) && signbit (z))
 	        return __kernel_standard(x,y,223); /* pow(-0.0,negative) */
 	      else