mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 11:39:15 +00:00
Fix.
Bench: 4471740
This commit is contained in:
parent
89bbe86800
commit
8ef6c837b7
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue