mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 09:13:08 +00: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:
parent
cedbd3332a
commit
d777c4d789
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
#include "platform.h"
|
#include "platform.h"
|
||||||
|
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64) && !defined(IS_64BIT)
|
||||||
# include <intrin.h> // MSVC popcnt and bsfq instrinsics
|
# include <intrin.h> // MSVC popcnt and bsfq instrinsics
|
||||||
# define IS_64BIT
|
# define IS_64BIT
|
||||||
# define USE_BSFQ
|
# define USE_BSFQ
|
||||||
|
|
Loading…
Add table
Reference in a new issue