We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45da7e6 + 4eecccd commit 0a609ccCopy full SHA for 0a609cc
driver/others/dynamic_power.c
@@ -202,6 +202,7 @@ static int cpuid(void)
202
#ifndef __BUILTIN_CPU_SUPPORTS__
203
#include <string.h>
204
205
+#if defined(_AIX) || (defined(__has_builtin) && !__has_builtin(__builtin_cpu_is))
206
static int __builtin_cpu_is(const char *arg)
207
{
208
static int ipinfo = -1;
@@ -224,12 +225,15 @@ static int __builtin_cpu_is(const char *arg)
224
225
}
226
return 0;
227
228
+#endif
229
230
+#if defined(_AIX) || (defined(__has_builtin) && !__has_builtin(__builtin_cpu_supports))
231
static int __builtin_cpu_supports(const char *arg)
232
233
234
235
#endif
236
237
238
static gotoblas_t *get_coretype(void) {
239
0 commit comments