No reason for these not to have prototypes; NFC

This should speculatively fix build bots:

https://lab.llvm.org/buildbot#builders/19/builds/10294
https://lab.llvm.org/buildbot#builders/37/builds/12289
This commit is contained in:
Aaron Ballman 2022-04-08 18:52:06 -04:00
parent 0bc9372fa7
commit 7b0dad9a02

View File

@ -17,7 +17,7 @@
#define MAYBE_UNUSED(x) (void)((x))
#if defined(IS_X86)
static uint64_t xgetbv() {
static uint64_t xgetbv(void) {
#if defined(_MSC_VER)
return _xgetbv(0);
#else
@ -83,7 +83,7 @@ LLVM_ATTRIBUTE_USED
static
#endif
enum cpu_feature
get_cpu_features() {
get_cpu_features(void) {
if (g_cpu_features != UNDEFINED) {
return g_cpu_features;