Skip to content

Commit

Permalink
Re-fix a comment
Browse files Browse the repository at this point in the history
No functional change.
  • Loading branch information
Jerry Donald authored and mcostalba committed Dec 3, 2013
1 parent a8af78c commit c7e7d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.h
Expand Up @@ -255,8 +255,8 @@ inline Score make_score(int mg, int eg) { return Score((mg << 16) + eg); }
inline Value mg_value(Score s) { return Value(((s + 0x8000) & ~0xffff) / 0x10000); }

/// On Intel 64 bit we have a small speed regression with the standard conforming
/// version. Therefore, in this case we use a faster code in this case that,
/// although not 100% standard compliant it seems to work for Intel and MSVC.
/// version. Therefore, in this case we use faster code that, although not 100%
/// standard compliant, seems to work for Intel and MSVC.
#if defined(IS_64BIT) && (!defined(__GNUC__) || defined(__INTEL_COMPILER))

inline Value eg_value(Score s) { return Value(int16_t(s & 0xffff)); }
Expand Down

0 comments on commit c7e7d92

Please sign in to comment.