Skip to content

Commit

Permalink
target/xtensa/esp32s3: fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
igrr committed Jun 6, 2024
1 parent 5bc0f2a commit 803bf3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions target/xtensa/translate_tie_esp32s3.c
Original file line number Diff line number Diff line change
Expand Up @@ -380,13 +380,13 @@ void HELPER(dump_all_s3)(CPUXtensaState *env)

for (int i = 0; i < 4; i++)
{
printf("QACC_L S40[%i] %16.16lx\n", i, q_req_l.s40[i]);
printf("QACC_L S40[%i] %16.16" PRIx64 "\n", i, q_req_l.s40[i]);
}
for (int i = 0; i < 4; i++)
{
printf("QACC_H S40[%i] %16.16lx\n", i+4, q_req_h.s40[i]);
printf("QACC_H S40[%i] %16.16" PRIx64 "\n", i+4, q_req_h.s40[i]);
}
printf("ACCX = %16.16lx\n", tie->ACCX);
printf("ACCX = %16.16" PRIx64 "\n", tie->ACCX);
printf("SAR_BYTE = %i\n", tie->SAR_BYTE);

printf("\n");
Expand Down

0 comments on commit 803bf3f

Please sign in to comment.