X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes.h;h=5fe73397d9ffd01866d50914ccfcb741894a00b6;hb=6c040c821a50475840607ef5f11c270ee21d61da;hp=c8078546775d20ae49079317cc520b3e9545dc4f;hpb=6645115377bd9699ae6785608753d33067b8e036;p=stockfish diff --git a/src/types.h b/src/types.h index c8078546..5fe73397 100644 --- a/src/types.h +++ b/src/types.h @@ -31,9 +31,6 @@ /// -DNO_PREFETCH | Disable use of prefetch asm-instruction. You may need this to /// | run on some very old machines. /// -/// -DNO_SPINLOCK | Use mutex instead of spinlocks. This is much slower, so you -/// | really don't want to do this in general case. -/// /// -DUSE_POPCNT | Add runtime support for use of popcnt asm-instruction. Works /// | only in 64-bit mode and requires hardware with popcnt support. /// @@ -82,14 +79,6 @@ # define pext(b, m) (0) #endif -#ifdef _MSC_VER -# define FORCE_INLINE __forceinline -#elif defined(__GNUC__) -# define FORCE_INLINE inline __attribute__((always_inline)) -#else -# define FORCE_INLINE inline -#endif - #ifdef USE_POPCNT const bool HasPopCnt = true; #else