Code: Select all
#include <intrin.h>
__forceinline int POPCNT (unsigned __int64 x) {
return (int) _mm_popcnt_u64(x);
}
For 64 bits, better Intel Compiler.
Probe.
Moderator: Ras
Code: Select all
#include <intrin.h>
__forceinline int POPCNT (unsigned __int64 x) {
return (int) _mm_popcnt_u64(x);
}
Jose, it looks like you're right on both counts.For 64 bits, better Intel Compiler.
Probe.