mirror of git://sourceware.org/git/glibc.git
Typo fix.
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE != 64].
This commit is contained in:
parent
fe0b1e854a
commit
464dce57cc
|
|
@ -4,7 +4,7 @@
|
||||||
* sysdeps/sparc/dl-procinfo.c: ... here, new file.
|
* sysdeps/sparc/dl-procinfo.c: ... here, new file.
|
||||||
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
|
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
|
||||||
* sysdeps/sparc/dl-procinfo.h: ... here, new file.
|
* sysdeps/sparc/dl-procinfo.h: ... here, new file.
|
||||||
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE__ != 64].
|
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE != 64].
|
||||||
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
|
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
|
||||||
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
|
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@
|
||||||
#if !defined PROCINFO_DECL && defined SHARED
|
#if !defined PROCINFO_DECL && defined SHARED
|
||||||
._dl_sparc_cap_flags
|
._dl_sparc_cap_flags
|
||||||
#else
|
#else
|
||||||
PROCINFO_CLASS const char _dl_sparc_cap_flags[][7]
|
PROCINFO_CLASS const char _dl_sparc_cap_flags[6][7]
|
||||||
#endif
|
#endif
|
||||||
#ifndef PROCINFO_DECL
|
#ifndef PROCINFO_DECL
|
||||||
= {
|
= {
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ _dl_string_hwcap (const char *str)
|
||||||
};
|
};
|
||||||
|
|
||||||
#include <bits/wordsize.h>
|
#include <bits/wordsize.h>
|
||||||
#define HWCAP_IMPORTANT_V9 (__WORDSIZE__ == 64 ? 0 : HWCAP_SPARC_V9)
|
#define HWCAP_IMPORTANT_V9 (__WORDSIZE == 64 ? 0 : HWCAP_SPARC_V9)
|
||||||
#define HWCAP_IMPORTANT (HWCAP_IMPORTANT_V9|HWCAP_SPARC_ULTRA3)
|
#define HWCAP_IMPORTANT (HWCAP_IMPORTANT_V9|HWCAP_SPARC_ULTRA3)
|
||||||
|
|
||||||
/* There are no different platforms defined. */
|
/* There are no different platforms defined. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue