[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: volk: fix popcnt puppter on 32-bit x
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: volk: fix popcnt puppter on 32-bit x86 builds |
Date: |
Mon, 29 Dec 2014 23:03:41 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch master
in repository gnuradio.
commit 714d0b1a3b4028bfc94741fe88acf5b066986a54
Author: Nathan West <address@hidden>
Date: Thu Dec 25 21:03:34 2014 -0600
volk: fix popcnt puppter on 32-bit x86 builds
---
volk/kernels/volk/volk_64u_popcntpuppet_64u.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/volk/kernels/volk/volk_64u_popcntpuppet_64u.h
b/volk/kernels/volk/volk_64u_popcntpuppet_64u.h
index ae20ff4..c2be422 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) {