about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan S. Arnold <rsa@us.ibm.com>2011-03-18 05:15:00 -0400
committerPetr Baudis <pasky@suse.cz>2011-05-27 00:19:12 +0200
commitefdc6bb89a814bacc9601d725565eceb1c3160bc (patch)
tree06a3d34dd7bb414c254779fe9a9db06f251f878c
parent6a29825d63f8e6c429c4fe425c3a0ed70a3245cb (diff)
downloadglibc-efdc6bb89a814bacc9601d725565eceb1c3160bc.tar.gz
glibc-efdc6bb89a814bacc9601d725565eceb1c3160bc.tar.xz
glibc-efdc6bb89a814bacc9601d725565eceb1c3160bc.zip
PowerPC: Fix POWER6 s_isnanf.S: END(__isnan) to END(__isnanf)
(cherry picked from commit ccfe366e6fc64bb81183480bd2ae113041d3c84c)
-rw-r--r--ChangeLog6
-rw-r--r--sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S5
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a71e6ca07..a174446135 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-03-16  Ryan S. Arnold  <rsa@us.ibm.com>
+
+	* sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
+	END(__isnan) to END(__isnanf) to match function entry point/label
+	EALIGN(__isnanf,...).
+
 2011-03-10  Jakub Jelinek  <jakub@redhat.com>
 
 	* wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
diff --git a/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S b/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S
index 12bf473a8d..0f71a987d5 100644
--- a/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S
+++ b/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S
@@ -1,5 +1,5 @@
 /* isnanf().  PowerPC32 version.
-   Copyright (C) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008, 2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -39,8 +39,7 @@ EALIGN (__isnanf, 4, 0)
 L(NaN):
 	li	r3,1		/* else return 1 */
 	blr
-	END (__isnan)
+	END (__isnanf)
 
 hidden_def (__isnanf)
 weak_alias (__isnanf, isnanf)
-