diff options
| author | Michael West <michael.west@ettus.com> | 2013-10-23 15:36:40 -0700 | 
|---|---|---|
| committer | Michael West <michael.west@ettus.com> | 2013-10-23 15:36:40 -0700 | 
| commit | d50a270988a3c9603ce80d3c9d3c4614619bb0a4 (patch) | |
| tree | 814bf31b3b11373d6f34fd485c3f868adcfc98e5 /host | |
| parent | 6302856d89e8b5091fd481970cf72a80a36d3e84 (diff) | |
| download | uhd-d50a270988a3c9603ce80d3c9d3c4614619bb0a4.tar.gz uhd-d50a270988a3c9603ce80d3c9d3c4614619bb0a4.tar.bz2 uhd-d50a270988a3c9603ce80d3c9d3c4614619bb0a4.zip | |
CID 1104341:  Fixed missing break in switch
CID 1104338:  Fixed missing break in switch
Diffstat (limited to 'host')
| -rw-r--r-- | host/lib/convert/sse2_sc16_to_fc32.cpp | 8 | 
1 files 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<uhd::htowx>(input, output, 1, scale_factor); i++; +        item32_sc16_to_xx<uhd::htowx>(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<uhd::htonx>(input, output, 1, scale_factor); i++; +        item32_sc16_to_xx<uhd::htonx>(input, output, 1, scale_factor); +        i++; +        break;      case 0x0:          convert_item32_1_to_fc32_1_bswap_guts(_)          break; | 
