mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 01:27:16 +08:00
Fix mingw compile with ARCH=x86-64
When using the Makefile (as for the mingw case), IS_64BIT and USE_BSFQ are already set with ARCH=x86-64 and do not need to be redefined. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
|
||||
#include "platform.h"
|
||||
|
||||
#if defined(_WIN64)
|
||||
#if defined(_WIN64) && !defined(IS_64BIT)
|
||||
# include <intrin.h> // MSVC popcnt and bsfq instrinsics
|
||||
# define IS_64BIT
|
||||
# define USE_BSFQ
|
||||
|
||||
Reference in New Issue
Block a user