Skip to content

Commit

Permalink
Correct warnings for issue #160
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Mar 4, 2024
1 parent 4189b59 commit f80ed81
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Source/TransformFunctions/arm_cfft_init_f16.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ arm_status arm_cfft_init_##LEN##_f16( \
status=arm_cfft_radix4by2_rearrange_twiddles_##LENTWIDDLE##_f16(S);\
\
return (status); \
};
}

#else

Expand All @@ -126,7 +126,7 @@ arm_status arm_cfft_init_##LEN##_f16(arm_cfft_instance_f16 * S)
FFTINIT(f16,LEN); \
\
return (status); \
};
}


#endif /* #if defined(ARM_FLOAT16_SUPPORTED) */
Expand Down
4 changes: 2 additions & 2 deletions Source/TransformFunctions/arm_cfft_init_f32.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ arm_status arm_cfft_init_##LEN##_f32(
status=arm_cfft_radix4by2_rearrange_twiddles_##LENTWIDDLE##_f32(S); \
\
return (status); \
};
}

#else

Expand All @@ -119,7 +119,7 @@ arm_status arm_cfft_init_##LEN##_f32(arm_cfft_instance_f32 * S)\
FFTINIT(f32,LEN); \
\
return (status); \
};
}

#endif /* defined(ARM_MATH_MVEF) && !defined(ARM_MATH_AUTOVECTORIZE) */

Expand Down
2 changes: 1 addition & 1 deletion Source/TransformFunctions/arm_cfft_init_f64.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ arm_status arm_cfft_init_##LEN##_f64(arm_cfft_instance_f64 * S)\
FFTINIT(f64,LEN); \
\
return (status); \
};
}

/**
@brief Initialization function for the cfft f64 function with 4096 samples
Expand Down
4 changes: 2 additions & 2 deletions Source/TransformFunctions/arm_cfft_init_q15.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ arm_status arm_cfft_init_##LEN##_q15( \
status=arm_cfft_radix4by2_rearrange_twiddles_##LENTWIDDLE##_q15(S);\
\
return (status); \
};
}


#else
Expand All @@ -119,7 +119,7 @@ arm_status arm_cfft_init_##LEN##_q15(arm_cfft_instance_q15 * S)\
FFTINIT(q15,LEN); \
\
return (status); \
};
}

#endif /* defined(ARM_MATH_MVEF) && !defined(ARM_MATH_AUTOVECTORIZE) */

Expand Down
4 changes: 2 additions & 2 deletions Source/TransformFunctions/arm_cfft_init_q31.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ arm_status arm_cfft_init_##LEN##_q31( \
status=arm_cfft_radix4by2_rearrange_twiddles_##LENTWIDDLE##_q31(S);\
\
return (status); \
};
}



Expand All @@ -121,7 +121,7 @@ arm_status arm_cfft_init_##LEN##_q31(arm_cfft_instance_q31 * S)\
FFTINIT(q31,LEN); \
\
return (status); \
};
}


#endif /* defined(ARM_MATH_MVEF) && !defined(ARM_MATH_AUTOVECTORIZE) */
Expand Down

0 comments on commit f80ed81

Please sign in to comment.