| 965 | #if defined(SPP_POPCNT_CHECK) && defined(SPP_POPCNT) |
| 966 | |
| 967 | static inline uint32_t spp_popcount(uint32_t i) |
| 968 | { |
| 969 | static const bool s_ok = spp_popcount_check(); |
| 970 | return s_ok ? SPP_POPCNT(i) : s_spp_popcount_default(i); |
| 971 | } |
| 972 | |
| 973 | #else |
| 974 |
no test coverage detected