From 9706285b78800f85b18e17e47000a429e277051c Mon Sep 17 00:00:00 2001 From: j_mayer Date: Fri, 21 Sep 2007 06:32:17 +0000 Subject: [PATCH] Avoid compilation warnings on 32 bits hosts. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3203 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-ppc/helper.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/target-ppc/helper.c b/target-ppc/helper.c index e5d152d7e6..061db87609 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -846,10 +846,12 @@ static int ppcemb_tlb_check (CPUState *env, ppcemb_tlb_t *tlb, if ((address & mask) != tlb->EPN) return -1; *raddrp = (tlb->RPN & mask) | (address & ~mask); +#if (TARGET_PHYS_ADDR_BITS >= 36) if (ext) { /* Extend the physical address to 36 bits */ *raddrp |= (target_phys_addr_t)(tlb->RPN & 0xF) << 32; } +#endif return 0; } @@ -1078,11 +1080,11 @@ static int check_physical (CPUState *env, mmu_ctx_t *ctx, #if defined(TARGET_PPC64) case PPC_FLAGS_MMU_64B: case PPC_FLAGS_MMU_64BRIDGE: -#endif /* Real address are 60 bits long */ ctx->raddr &= 0x0FFFFFFFFFFFFFFFUL; ctx->prot |= PAGE_WRITE; break; +#endif case PPC_FLAGS_MMU_403: if (unlikely(msr_pe != 0)) { /* 403 family add some particular protections,