opencv/cmake/checks/cpu_popcnt.cpp

9 lines
133 B
C++
Raw Normal View History

2016-09-07 23:02:36 +08:00
#include <nmmintrin.h>
#ifndef _MSC_VER
#include <popcntintrin.h>
#endif
int main() {
int i = _mm_popcnt_u64(1);
return 0;
}