mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-18 16:16:23 +08:00
Fix.
Bench: 4471740
This commit is contained in:
@@ -142,6 +142,7 @@ inline uint64_t mul_hi64(uint64_t a, uint64_t b) {
|
|||||||
uint64_t c3 = aL * bH + (uint32_t)c2;
|
uint64_t c3 = aL * bH + (uint32_t)c2;
|
||||||
return aH * bH + (c2 >> 32) + (c3 >> 32);
|
return aH * bH + (c2 >> 32) + (c3 >> 32);
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/// Under Windows it is not possible for a process to run on more than one
|
/// Under Windows it is not possible for a process to run on more than one
|
||||||
/// logical processor group. This usually means to be limited to use max 64
|
/// logical processor group. This usually means to be limited to use max 64
|
||||||
|
|||||||
Reference in New Issue
Block a user