mirror of https://github.com/xqemu/xqemu.git
exec: Fix compilation error for debug code
is_softmmu was removed with commit
d4c430a80f
,
so remove it now from debug code, too.
Fix also the format specifier for paddr
in the same line of code.
Cc: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
b832134d8a
commit
7fd3f49440
5
exec.c
5
exec.c
|
@ -2173,8 +2173,9 @@ void tlb_set_page(CPUState *env, target_ulong vaddr,
|
||||||
pd = p->phys_offset;
|
pd = p->phys_offset;
|
||||||
}
|
}
|
||||||
#if defined(DEBUG_TLB)
|
#if defined(DEBUG_TLB)
|
||||||
printf("tlb_set_page: vaddr=" TARGET_FMT_lx " paddr=0x%08x prot=%x idx=%d smmu=%d pd=0x%08lx\n",
|
printf("tlb_set_page: vaddr=" TARGET_FMT_lx " paddr=0x" TARGET_FMT_plx
|
||||||
vaddr, (int)paddr, prot, mmu_idx, is_softmmu, pd);
|
" prot=%x idx=%d pd=0x%08lx\n",
|
||||||
|
vaddr, paddr, prot, mmu_idx, pd);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
address = vaddr;
|
address = vaddr;
|
||||||
|
|
Loading…
Reference in New Issue