mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Fix a warning with POPCNT and MSVC
Intrinsic __popcnt64() returns an unsigned __int64, cast to an integer and silence the warning. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
13c096f839
commit
1ea70dd9dd
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ inline bool cpu_has_popcnt() {
|
|||
return (CPUInfo[2] >> 23) & 1;
|
||||
}
|
||||
|
||||
#define POPCNT_INTRINSIC(x) __popcnt64(x)
|
||||
#define POPCNT_INTRINSIC(x) (int)__popcnt64(x)
|
||||
|
||||
#elif defined(__GNUC__) && defined(USE_POPCNT) // Gcc compiler
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue