Fix default case for cpu_is.

This commit is contained in:
Chip-Kerchner 2023-10-03 12:23:21 -05:00
parent 2d0b233425
commit 09212f84bf
1 changed files with 1 additions and 2 deletions

View File

@ -248,9 +248,8 @@ static int __builtin_cpu_is(char *arg)
if (!strcmp(arg, "power8")) return 1;
} else if (ipinfo == CPU_POWER6) {
if (!strcmp(arg, "power6")) return 1;
} else {
return 0;
}
return 0;
}
#endif
#endif /* _AIX */