Fix -Wundef warnings in login/tst-utmp.c.
[glibc.git] / sysdeps / i386 / dl-procinfo.c
blobe95f3352aa58fe6b50d54eb9ae55af01c014a30a
1 /* Data for i386 version of processor capability information.
2 Copyright (C) 2001-2015 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 /* This information must be kept in sync with the _DL_HWCAP_COUNT and
21 _DL_PLATFORM_COUNT definitions in procinfo.h.
23 If anything should be added here check whether the size of each string
24 is still ok with the given array size.
26 All the #ifdefs in the definitions are quite irritating but
27 necessary if we want to avoid duplicating the information. There
28 are three different modes:
30 - PROCINFO_DECL is defined. This means we are only interested in
31 declarations.
33 - PROCINFO_DECL is not defined:
35 + if SHARED is defined the file is included in an array
36 initializer. The .element = { ... } syntax is needed.
38 + if SHARED is not defined a normal array initialization is
39 needed.
42 #ifndef PROCINFO_CLASS
43 # define PROCINFO_CLASS
44 #endif
46 #if !IS_IN (ldconfig)
47 # if !defined PROCINFO_DECL && defined SHARED
48 ._dl_x86_cpu_features
49 # else
50 PROCINFO_CLASS struct cpu_features _dl_x86_cpu_features
51 # endif
52 # ifndef PROCINFO_DECL
53 = { }
54 # endif
55 # if !defined SHARED || defined PROCINFO_DECL
57 # else
59 # endif
60 #endif
62 #if !defined PROCINFO_DECL && defined SHARED
63 ._dl_x86_cap_flags
64 #else
65 PROCINFO_CLASS const char _dl_x86_cap_flags[32][8]
66 #endif
67 #ifndef PROCINFO_DECL
68 = {
69 "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
70 "cx8", "apic", "10", "sep", "mtrr", "pge", "mca", "cmov",
71 "pat", "pse36", "pn", "clflush", "20", "dts", "acpi", "mmx",
72 "fxsr", "sse", "sse2", "ss", "ht", "tm", "ia64", "pbe"
74 #endif
75 #if !defined SHARED || defined PROCINFO_DECL
77 #else
79 #endif
81 #if !defined PROCINFO_DECL && defined SHARED
82 ._dl_x86_platforms
83 #else
84 PROCINFO_CLASS const char _dl_x86_platforms[4][5]
85 #endif
86 #ifndef PROCINFO_DECL
87 = {
88 "i386", "i486", "i586", "i686"
90 #endif
91 #if !defined SHARED || defined PROCINFO_DECL
93 #else
95 #endif
97 #undef PROCINFO_DECL
98 #undef PROCINFO_CLASS