| 81 | #if defined(i386) |
| 82 | #include <cpuid.h> |
| 83 | inline void spp_cpuid(int info[4], int InfoType) { |
| 84 | __cpuid_count(InfoType, 0, info[0], info[1], info[2], info[3]); |
| 85 | } |
| 86 | #endif |
| 87 | |
| 88 | #define SPP_POPCNT __builtin_popcount |
no outgoing calls
no test coverage detected