Fix printf
This commit is contained in:
parent
7915f97d98
commit
a281fcc744
1 changed files with 2 additions and 2 deletions
|
@ -268,12 +268,12 @@ void FuzzJitArm(const size_t instruction_count, const size_t instructions_to_exe
|
||||||
|
|
||||||
printf("\nInterp Write Records:\n");
|
printf("\nInterp Write Records:\n");
|
||||||
for (auto& record : interp_write_records) {
|
for (auto& record : interp_write_records) {
|
||||||
printf("%zu [%x] = %llx" PRIu64 "\n", record.size, record.address, record.data);
|
printf("%zu [%x] = %" PRIx64 "\n", record.size, record.address, record.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("\nJIT Write Records:\n");
|
printf("\nJIT Write Records:\n");
|
||||||
for (auto& record : jit_write_records) {
|
for (auto& record : jit_write_records) {
|
||||||
printf("%zu [%x] = %llx" PRIu64 "\n", record.size, record.address, record.data);
|
printf("%zu [%x] = %" PRIx64 "\n", record.size, record.address, record.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
Dynarmic::Arm::LocationDescriptor descriptor = {0, false, false, 0};
|
Dynarmic::Arm::LocationDescriptor descriptor = {0, false, false, 0};
|
||||||
|
|
Loading…
Reference in a new issue