fix hardnested switch-enum
This commit is contained in:
@@ -52,13 +52,20 @@ THE SOFTWARE.
|
|||||||
|
|
||||||
#include "hardnested_bruteforce.h" // statelist_t
|
#include "hardnested_bruteforce.h" // statelist_t
|
||||||
|
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
SIMD_AUTO,
|
SIMD_AUTO,
|
||||||
|
#if defined (__i386__) || defined (__x86_64__)
|
||||||
|
#if !defined(__APPLE__) || (defined(__APPLE__) && (__clang_major__ > 8 || __clang_major__ == 8 && __clang_minor__ >= 1))
|
||||||
|
#if (__GNUC__ >= 5) && (__GNUC__ > 5 || __GNUC_MINOR__ > 2)
|
||||||
SIMD_AVX512,
|
SIMD_AVX512,
|
||||||
|
#endif
|
||||||
SIMD_AVX2,
|
SIMD_AVX2,
|
||||||
SIMD_AVX,
|
SIMD_AVX,
|
||||||
SIMD_SSE2,
|
SIMD_SSE2,
|
||||||
SIMD_MMX,
|
SIMD_MMX,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
SIMD_NONE,
|
SIMD_NONE,
|
||||||
} SIMDExecInstr;
|
} SIMDExecInstr;
|
||||||
void SetSIMDInstr(SIMDExecInstr instr);
|
void SetSIMDInstr(SIMDExecInstr instr);
|
||||||
|
|||||||
Reference in New Issue
Block a user