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

use 32-bit bitreversal loop index #81

Merged
merged 1 commit into from
Jan 10, 2023
Merged
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
6 changes: 4 additions & 2 deletions Source/TransformFunctions/arm_bitreversal2.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ void arm_bitreversal_64(
const uint16_t bitRevLen,
const uint16_t *pBitRevTab)
{
uint64_t a, b, i, tmp;
uint64_t a, b, tmp;
uint32_t i;

for (i = 0; i < bitRevLen; )
{
Expand Down Expand Up @@ -112,7 +113,8 @@ void arm_bitreversal_16(
const uint16_t bitRevLen,
const uint16_t *pBitRevTab)
{
uint16_t a, b, i, tmp;
uint16_t a, b, tmp;
uint32_t i;

for (i = 0; i < bitRevLen; )
{
Expand Down