summaryrefslogtreecommitdiff
path: root/volk
diff options
context:
space:
mode:
authorNathan West <nathan.west@okstate.edu>2014-12-25 21:03:34 -0600
committerJohnathan Corgan <johnathan@corganlabs.com>2014-12-29 14:57:49 -0800
commit714d0b1a3b4028bfc94741fe88acf5b066986a54 (patch)
treeef2b9a3b9ce1c7ab57055b3bb7456df6e6ef8179 /volk
parent6eb6375e76cef63669c3f219dfe53c5883914da8 (diff)
volk: fix popcnt puppter on 32-bit x86 builds
Diffstat (limited to 'volk')
-rw-r--r--volk/kernels/volk/volk_64u_popcntpuppet_64u.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/volk/kernels/volk/volk_64u_popcntpuppet_64u.h b/volk/kernels/volk/volk_64u_popcntpuppet_64u.h
index ae20ff497c..c2be422a13 100644
--- a/volk/kernels/volk/volk_64u_popcntpuppet_64u.h
+++ b/volk/kernels/volk/volk_64u_popcntpuppet_64u.h
@@ -36,7 +36,7 @@ static inline void volk_64u_popcntpuppet_64u_generic(uint64_t* outVector, const
}
#endif /* LV_HAVE_GENERIC */
-#ifdef LV_HAVE_SSE4_2
+#if LV_HAVE_SSE4_2 && LV_HAVE_64
static inline void volk_64u_popcntpuppet_64u_a_sse4_2(uint64_t* outVector, const uint64_t* inVector, unsigned int num_points){
unsigned int ii;
for(ii=0; ii < num_points; ++ii) {