diff options
-rw-r--r-- | target/ppc/mmu_common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/ppc/mmu_common.c b/target/ppc/mmu_common.c index 89107a6..49067c0 100644 --- a/target/ppc/mmu_common.c +++ b/target/ppc/mmu_common.c @@ -811,7 +811,8 @@ static int mmubooke206_check_tlb(CPUPPCState *env, ppcmas_tlb_t *tlb, } } - qemu_log_mask(CPU_LOG_MMU, "%s: TLB entry not found\n", __func__); + qemu_log_mask(CPU_LOG_MMU, "%s: No TLB entry found for effective address " + "0x" TARGET_FMT_lx "\n", __func__, address); return -1; found_tlb: |