hardnested: more readable preprocessing

This commit is contained in:
Philippe Teuwen
2020-05-12 13:26:16 +02:00
parent 5e4c83cc2f
commit 66fd6d70a0
5 changed files with 81 additions and 130 deletions

View File

@@ -75,13 +75,12 @@ static float brute_force_per_second;
static void get_SIMD_instruction_set(char *instruction_set) {
switch (GetSIMDInstrAuto()) {
#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)
#if defined(COMPILER_HAS_SIMD_AVX512)
case SIMD_AVX512:
strcpy(instruction_set, "AVX512F");
break;
#endif
#if defined(COMPILER_HAS_SIMD)
case SIMD_AVX2:
strcpy(instruction_set, "AVX2");
break;
@@ -94,7 +93,6 @@ static void get_SIMD_instruction_set(char *instruction_set) {
case SIMD_MMX:
strcpy(instruction_set, "MMX");
break;
#endif
#endif
case SIMD_AUTO:
case SIMD_NONE: