Skip to content

Commit

Permalink
Fix mingw compile with ARCH=x86-64
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
mcostalba committed Oct 6, 2012
1 parent cedbd33 commit d777c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.h
Expand Up @@ -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
Expand Down

0 comments on commit d777c4d

Please sign in to comment.