Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix GCC errors with pendantic flag enabled #163

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Source/TransformFunctions/arm_cfft_init_f16.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ arm_status arm_cfft_init_##LEN##_f16(arm_cfft_instance_f16 * S)
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(4096,4096);
CFFTINIT_F16(4096,4096)

/**
@brief Initialization function for the cfft f16 function with 2048 samples
Expand All @@ -157,7 +157,7 @@ CFFTINIT_F16(4096,4096);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(2048,1024);
CFFTINIT_F16(2048,1024)


/**
Expand All @@ -171,7 +171,7 @@ CFFTINIT_F16(2048,1024);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(1024,1024);
CFFTINIT_F16(1024,1024)


/**
Expand All @@ -185,7 +185,7 @@ CFFTINIT_F16(1024,1024);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(512,256);
CFFTINIT_F16(512,256)


/**
Expand All @@ -199,7 +199,7 @@ CFFTINIT_F16(512,256);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(256,256);
CFFTINIT_F16(256,256)


/**
Expand All @@ -213,7 +213,7 @@ CFFTINIT_F16(256,256);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(128,64);
CFFTINIT_F16(128,64)


/**
Expand All @@ -227,7 +227,7 @@ CFFTINIT_F16(128,64);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(64,64);
CFFTINIT_F16(64,64)


/**
Expand All @@ -241,7 +241,7 @@ CFFTINIT_F16(64,64);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(32,16);
CFFTINIT_F16(32,16)


/**
Expand All @@ -255,7 +255,7 @@ CFFTINIT_F16(32,16);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F16(16,16);
CFFTINIT_F16(16,16)


/**
Expand Down
18 changes: 9 additions & 9 deletions Source/TransformFunctions/arm_cfft_init_f32.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ arm_status arm_cfft_init_##LEN##_f32(arm_cfft_instance_f32 * S)\
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(4096,4096);
CFFTINIT_F32(4096,4096)


/**
Expand All @@ -148,7 +148,7 @@ CFFTINIT_F32(4096,4096);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(2048,1024);
CFFTINIT_F32(2048,1024)


/**
Expand All @@ -162,7 +162,7 @@ CFFTINIT_F32(2048,1024);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(1024,1024);
CFFTINIT_F32(1024,1024)


/**
Expand All @@ -176,7 +176,7 @@ CFFTINIT_F32(1024,1024);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(512,256);
CFFTINIT_F32(512,256)


/**
Expand All @@ -190,7 +190,7 @@ CFFTINIT_F32(512,256);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(256,256);
CFFTINIT_F32(256,256)


/**
Expand All @@ -204,7 +204,7 @@ CFFTINIT_F32(256,256);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(128,64);
CFFTINIT_F32(128,64)


/**
Expand All @@ -218,7 +218,7 @@ CFFTINIT_F32(128,64);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(64,64);
CFFTINIT_F32(64,64)


/**
Expand All @@ -232,7 +232,7 @@ CFFTINIT_F32(64,64);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(32,16);
CFFTINIT_F32(32,16)


/**
Expand All @@ -246,7 +246,7 @@ CFFTINIT_F32(32,16);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F32(16,16);
CFFTINIT_F32(16,16)


/**
Expand Down
18 changes: 9 additions & 9 deletions Source/TransformFunctions/arm_cfft_init_f64.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ arm_status arm_cfft_init_##LEN##_f64(arm_cfft_instance_f64 * S)\
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(4096);
CFFTINIT_F64(4096)

/**
@brief Initialization function for the cfft f64 function with 2048 samples
Expand All @@ -96,7 +96,7 @@ CFFTINIT_F64(4096);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(2048);
CFFTINIT_F64(2048)


/**
Expand All @@ -110,7 +110,7 @@ CFFTINIT_F64(2048);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(1024);
CFFTINIT_F64(1024)

/**
@brief Initialization function for the cfft f64 function with 512 samples
Expand All @@ -123,7 +123,7 @@ CFFTINIT_F64(1024);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(512);
CFFTINIT_F64(512)

/**
@brief Initialization function for the cfft f64 function with 256 samples
Expand All @@ -136,7 +136,7 @@ CFFTINIT_F64(512);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(256);
CFFTINIT_F64(256)

/**
@brief Initialization function for the cfft f64 function with 128 samples
Expand All @@ -149,7 +149,7 @@ CFFTINIT_F64(256);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(128);
CFFTINIT_F64(128)

/**
@brief Initialization function for the cfft f64 function with 64 samples
Expand All @@ -162,7 +162,7 @@ CFFTINIT_F64(128);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(64);
CFFTINIT_F64(64)

/**
@brief Initialization function for the cfft f64 function with 32 samples
Expand All @@ -175,7 +175,7 @@ CFFTINIT_F64(64);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(32);
CFFTINIT_F64(32)

/**
@brief Initialization function for the cfft f64 function with 16 samples
Expand All @@ -188,7 +188,7 @@ CFFTINIT_F64(32);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_F64(16);
CFFTINIT_F64(16)

/**
@brief Generic initialization function for the cfft f64 function
Expand Down
18 changes: 9 additions & 9 deletions Source/TransformFunctions/arm_cfft_init_q15.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ arm_status arm_cfft_init_##LEN##_q15(arm_cfft_instance_q15 * S)\
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(4096,4096);
CFFTINIT_Q15(4096,4096)

/**
@brief Initialization function for the cfft q15 function for 2048 samples
Expand All @@ -149,7 +149,7 @@ CFFTINIT_Q15(4096,4096);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(2048,1024);
CFFTINIT_Q15(2048,1024)

/**
@brief Initialization function for the cfft q15 function for 1024 samples
Expand All @@ -162,7 +162,7 @@ CFFTINIT_Q15(2048,1024);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(1024,1024);
CFFTINIT_Q15(1024,1024)

/**
@brief Initialization function for the cfft q15 function for 512 samples
Expand All @@ -175,7 +175,7 @@ CFFTINIT_Q15(1024,1024);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(512,256);
CFFTINIT_Q15(512,256)

/**
@brief Initialization function for the cfft q15 function for 256 samples
Expand All @@ -188,7 +188,7 @@ CFFTINIT_Q15(512,256);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(256,256);
CFFTINIT_Q15(256,256)

/**
@brief Initialization function for the cfft q15 function for 128 samples
Expand All @@ -201,7 +201,7 @@ CFFTINIT_Q15(256,256);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(128,64);
CFFTINIT_Q15(128,64)

/**
@brief Initialization function for the cfft q15 function for 64 samples
Expand All @@ -214,7 +214,7 @@ CFFTINIT_Q15(128,64);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(64,64);
CFFTINIT_Q15(64,64)

/**
@brief Initialization function for the cfft q15 function for 32 samples
Expand All @@ -227,7 +227,7 @@ CFFTINIT_Q15(64,64);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(32,16);
CFFTINIT_Q15(32,16)

/**
@brief Initialization function for the cfft q15 function for 16 samples
Expand All @@ -240,7 +240,7 @@ CFFTINIT_Q15(32,16);
Other versions can still initialize directly the data structure using
variables declared in arm_const_structs.h
*/
CFFTINIT_Q15(16,16);
CFFTINIT_Q15(16,16)

/**
@brief Generic initialization function for the cfft q15 function
Expand Down
Loading
Loading