diff --git a/src/movepick.cpp b/src/movepick.cpp index f736c295b..5be46dc71 100644 --- a/src/movepick.cpp +++ b/src/movepick.cpp @@ -56,7 +56,7 @@ enum Stages { QCAPTURE }; -#ifdef USE_AVX512ICL +#ifdef USE_AVX512 // Load the Move, and the ExtMove value, into all lanes of 512-bit registers static void splat_extmove(const ExtMove& m, __m512i& move, __m512i& value) { move = _mm512_set1_epi32(m.raw()); @@ -111,7 +111,7 @@ struct MoveSorter { void partial_insertion_sort(ExtMove* begin, ExtMove* end, int limit) { ExtMove *sortedEnd = begin, *p = begin + 1; -#ifdef USE_AVX512ICL +#ifdef USE_AVX512 if (begin == end) return;