Skip to content

Commit b90e490

Browse files
MSVC build warnings
1 parent ed95e8a commit b90e490

6 files changed

Lines changed: 8 additions & 2 deletions

File tree

Include/dsp/none.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ compiler file in Core or Core_A would not make sense.
7272
count += 1U;
7373
mask = mask >> 1U;
7474
}
75-
return count;
75+
return ((uint8_t)count);
7676
}
7777

7878
__STATIC_FORCEINLINE int32_t __SSAT(int32_t val, uint32_t sat)

Ne10/CMSIS_NE10_fft_generic_int32.neonintrinsic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ static void ne10_mixed_radix_generic_butterfly_int32_neon_impl_##ISINVERSE##_##I
559559
while (stage_count > 0) \
560560
{ \
561561
/* radix of first stage, should be one of {2,3,5,4} */ \
562-
//printf("Radix %d, index %d\n",radix,stage_count << 1); \
562+
/* printf("Radix %d, index %d\n",radix,stage_count << 1); */ \
563563
assert ((radix > 1) && (radix < 6)); \
564564
\
565565
arm_ne10_swap_ptr (buffer, Fout); \

Source/CommonTables/arm_common_tables.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* limitations under the License.
2727
*/
2828

29+
#include "arm_compiler_specific.h"
2930
#include "arm_math_types.h"
3031
#include "arm_common_tables.h"
3132

Source/CommonTables/arm_const_structs.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
3031
#include "arm_math_types.h"
3132
#include "arm_const_structs.h"
3233

Source/CommonTables/arm_mve_tables.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
* limitations under the License.
2828
*/
2929

30+
#include "arm_compiler_specific.h"
31+
3032
#include "arm_math_types.h"
3133

3234

Source/CommonTables/arm_neon_tables.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
* limitations under the License.
2727
*/
2828

29+
#include "arm_compiler_specific.h"
30+
2931
#include "arm_math_types.h"
3032

3133

0 commit comments

Comments
 (0)