aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/convert
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/convert')
-rw-r--r--host/lib/convert/sse2_sc8_to_fc32.cpp2
-rw-r--r--host/lib/convert/sse2_sc8_to_fc64.cpp2
2 files changed, 0 insertions, 4 deletions
diff --git a/host/lib/convert/sse2_sc8_to_fc32.cpp b/host/lib/convert/sse2_sc8_to_fc32.cpp
index aefda2b13..af326a8fa 100644
--- a/host/lib/convert/sse2_sc8_to_fc32.cpp
+++ b/host/lib/convert/sse2_sc8_to_fc32.cpp
@@ -44,7 +44,6 @@ DECLARE_CONVERTER(sc8_item32_be, 1, fc32, 1, PRIORITY_SIMD)
const int shuf = _MM_SHUFFLE(3, 2, 1, 0);
size_t i = 0, j = 0;
- fc32_t dummy;
size_t num_samps = nsamps;
if ((size_t(inputs[0]) & 0x3) != 0) {
@@ -88,7 +87,6 @@ DECLARE_CONVERTER(sc8_item32_le, 1, fc32, 1, PRIORITY_SIMD)
const int shuf = _MM_SHUFFLE(0, 1, 2, 3);
size_t i = 0, j = 0;
- fc32_t dummy;
size_t num_samps = nsamps;
if ((size_t(inputs[0]) & 0x3) != 0) {
diff --git a/host/lib/convert/sse2_sc8_to_fc64.cpp b/host/lib/convert/sse2_sc8_to_fc64.cpp
index 3cc2fefd0..b40f91ec1 100644
--- a/host/lib/convert/sse2_sc8_to_fc64.cpp
+++ b/host/lib/convert/sse2_sc8_to_fc64.cpp
@@ -56,7 +56,6 @@ DECLARE_CONVERTER(sc8_item32_be, 1, fc64, 1, PRIORITY_SIMD)
const __m128d scalar = _mm_set1_pd(scale_factor / (1 << 24));
size_t i = 0, j = 0;
- fc32_t dummy;
size_t num_samps = nsamps;
if ((size_t(inputs[0]) & 0x3) != 0) {
@@ -103,7 +102,6 @@ DECLARE_CONVERTER(sc8_item32_le, 1, fc64, 1, PRIORITY_SIMD)
const __m128d scalar = _mm_set1_pd(scale_factor / (1 << 24));
size_t i = 0, j = 0;
- fc32_t dummy;
size_t num_samps = nsamps;
if ((size_t(inputs[0]) & 0x3) != 0) {