mirror of git://sourceware.org/git/glibc.git
PowerPC: Fix POWER6 s_isnanf.S: END(__isnan) to END(__isnanf)
This commit is contained in:
parent
c6e13027ab
commit
ccfe366e6f
|
|
@ -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>
|
2011-03-10 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
|
* wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/* isnanf(). PowerPC32 version.
|
/* 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.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -39,8 +39,7 @@ EALIGN (__isnanf, 4, 0)
|
||||||
L(NaN):
|
L(NaN):
|
||||||
li r3,1 /* else return 1 */
|
li r3,1 /* else return 1 */
|
||||||
blr
|
blr
|
||||||
END (__isnan)
|
END (__isnanf)
|
||||||
|
|
||||||
hidden_def (__isnanf)
|
hidden_def (__isnanf)
|
||||||
weak_alias (__isnanf, isnanf)
|
weak_alias (__isnanf, isnanf)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue