summaryrefslogtreecommitdiff
path: root/volk/include/volk/volk_64u_popcnt_a.h
diff options
context:
space:
mode:
Diffstat (limited to 'volk/include/volk/volk_64u_popcnt_a.h')
-rw-r--r--volk/include/volk/volk_64u_popcnt_a.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/volk/include/volk/volk_64u_popcnt_a.h b/volk/include/volk/volk_64u_popcnt_a.h
index 4683f1e38..7d7359ccf 100644
--- a/volk/include/volk/volk_64u_popcnt_a.h
+++ b/volk/include/volk/volk_64u_popcnt_a.h
@@ -11,7 +11,7 @@
static inline void volk_64u_popcnt_a_generic(uint64_t* ret, const uint64_t value) {
//const uint32_t* valueVector = (const uint32_t*)&value;
-
+
// This is faster than a lookup table
//uint32_t retVal = valueVector[0];
uint32_t retVal = (uint32_t)(value && 0x00000000FFFFFFFF);