From d50a270988a3c9603ce80d3c9d3c4614619bb0a4 Mon Sep 17 00:00:00 2001 From: Michael West Date: Wed, 23 Oct 2013 15:36:40 -0700 Subject: CID 1104341: Fixed missing break in switch CID 1104338: Fixed missing break in switch --- host/lib/convert/sse2_sc16_to_fc32.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/host/lib/convert/sse2_sc16_to_fc32.cpp b/host/lib/convert/sse2_sc16_to_fc32.cpp index c03e41585..7a9860970 100644 --- a/host/lib/convert/sse2_sc16_to_fc32.cpp +++ b/host/lib/convert/sse2_sc16_to_fc32.cpp @@ -53,7 +53,9 @@ DECLARE_CONVERTER(sc16_item32_le, 1, fc32, 1, PRIORITY_SIMD){ //dispatch according to alignment switch (size_t(output) & 0xf){ case 0x8: - item32_sc16_to_xx(input, output, 1, scale_factor); i++; + item32_sc16_to_xx(input, output, 1, scale_factor); + i++; + break; case 0x0: convert_item32_1_to_fc32_1_nswap_guts(_) break; @@ -95,7 +97,9 @@ DECLARE_CONVERTER(sc16_item32_be, 1, fc32, 1, PRIORITY_SIMD){ //dispatch according to alignment switch (size_t(output) & 0xf){ case 0x8: - item32_sc16_to_xx(input, output, 1, scale_factor); i++; + item32_sc16_to_xx(input, output, 1, scale_factor); + i++; + break; case 0x0: convert_item32_1_to_fc32_1_bswap_guts(_) break; -- cgit v1.2.3