mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
* sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
to the list of i486+ CPUs. * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise. 2007-02-12 Jakub Jelinek <jakub@redhat.com> * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__ to the list of i486+ CPUs. * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
This commit is contained in:
parent
2f978feb67
commit
3a7cd5b414
@ -1,3 +1,9 @@
|
||||
2007-02-12 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
|
||||
to the list of i486+ CPUs.
|
||||
* sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
|
||||
|
||||
2007-02-12 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
|
||||
|
@ -68,7 +68,7 @@ __bswap_16 (unsigned short int __bsx)
|
||||
# if !defined __i486__ && !defined __pentium__ && !defined __pentiumpro__ \
|
||||
&& !defined __pentium4__ && !defined __k8__ && !defined __athlon__ \
|
||||
&& !defined __k6__ && !defined __nocona__ && !defined __core2__ \
|
||||
&& !defined __geode__
|
||||
&& !defined __geode__ && !defined __amdfam10__
|
||||
# define __bswap_32(x) \
|
||||
(__extension__ \
|
||||
({ register unsigned int __v, __x = (x); \
|
||||
|
@ -61,7 +61,8 @@
|
||||
|| defined __pentiumpro__ || defined __pentium4__ \
|
||||
|| defined __k8__ || defined __athlon__ \
|
||||
|| defined __k6__ || defined __nocona__ \
|
||||
|| defined __core2__ || defined __geode__)
|
||||
|| defined __core2__ || defined __geode__ \
|
||||
|| defined __amdfam10__)
|
||||
/* To swap the bytes in a word the i486 processors and up provide the
|
||||
`bswap' opcode. On i386 we have to use three instructions. */
|
||||
# define __bswap_32(x) \
|
||||
|
Loading…
Reference in New Issue
Block a user