Rename struct hardware_flags to hardware_flags_t.

This commit is contained in:
Ari Koivula 2015-03-04 16:24:59 +02:00
parent e7754bb518
commit cf5f240604
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@
#include <immintrin.h>
#endif
hardware_flags g_hardware_flags;
hardware_flags_t g_hardware_flags;
static void set_hardware_flags(int32_t cpuid);
static void* strategyselector_choose_for(const strategy_list_t * const strategies, const char * const strategy_type);

View file

@ -134,9 +134,9 @@ typedef struct {
struct {
int neon;
} arm_flags;
} hardware_flags;
} hardware_flags_t;
extern hardware_flags g_hardware_flags;
extern hardware_flags_t g_hardware_flags;
int strategyselector_init(int32_t cpuid);