diff options
Diffstat (limited to 'host/lib/convert/sse2_sc8_to_fc64.cpp')
-rw-r--r-- | host/lib/convert/sse2_sc8_to_fc64.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
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) { |