diff options
author | Ryan S. Arnold <rsa@us.ibm.com> | 2011-03-18 05:15:00 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-03-18 05:15:00 -0400 |
commit | ccfe366e6fc64bb81183480bd2ae113041d3c84c (patch) | |
tree | 60c633ae3eaa6eb2d5946456ffe5bb2f3cd8211c /sysdeps | |
parent | c6e13027abd4b9c2d694fb4d8b28ab8290ea5971 (diff) | |
download | glibc-ccfe366e6fc64bb81183480bd2ae113041d3c84c.tar glibc-ccfe366e6fc64bb81183480bd2ae113041d3c84c.tar.gz glibc-ccfe366e6fc64bb81183480bd2ae113041d3c84c.tar.bz2 glibc-ccfe366e6fc64bb81183480bd2ae113041d3c84c.zip |
PowerPC: Fix POWER6 s_isnanf.S: END(__isnan) to END(__isnanf)
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S | 5 |
1 files changed, 2 insertions, 3 deletions
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) - |