From a6a6f25404eac9cf9e01585d81fb67e9693d8769 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 8 Jan 2021 12:24:19 +0100 Subject: convert: Remove unused variables This reduces compiler warnings when using clang. --- host/lib/convert/sse2_sc8_to_fc32.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'host/lib/convert/sse2_sc8_to_fc32.cpp') 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) { -- cgit v1.2.3