Skip to content

Commit

Permalink
sw: Avoid troublesome word-size volatile stack tip
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsc96 committed Nov 28, 2024
1 parent 89c850e commit db1aede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/tests/axirt_budget.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ int main(void) {
DMA_DST_STRIDE, DMA_SRC_STRIDE, DMA_NUM_REPS);

// Check DMA transfers against gold.
for (volatile int i = 0; i < DMA_NUM_BEATS; i++) {
for (int i = 0; i < DMA_NUM_BEATS; i++) {
CHECK_ASSERT(20, dma_dst[i] == golden[i]);
}

Expand Down

0 comments on commit db1aede

Please sign in to comment.