]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
PowerPC: Fix POWER6 s_isnanf.S: END(__isnan) to END(__isnanf)
authorRyan S. Arnold <rsa@us.ibm.com>
Fri, 18 Mar 2011 09:15:00 +0000 (05:15 -0400)
committerRyan S. Arnold <rsa@us.ibm.com>
Tue, 3 May 2011 21:43:46 +0000 (16:43 -0500)
(cherry picked from commit ccfe366e6fc64bb81183480bd2ae113041d3c84c)

ChangeLog
sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S

index 6f918f9c9d45430a7d7efe55dd75d8badb14acf4..5436e0415ae0977b8ff2e06a7d25901b16a97b1c 100644 (file)
--- 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-05-03  Ryan S. Arnold  <rsa@us.ibm.com>
 
        * elf/dynamic-link.h (elf_get_dynamic_info): Remove assert() around
index 12bf473a8da6a6a27666e657fe8e004ef3b63365..0f71a987d5bacc584d8aa3b159bcba0c5d019453 100644 (file)
@@ -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)
-