diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-21 06:32:17 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-21 06:32:17 +0000 |
commit | 9706285b78800f85b18e17e47000a429e277051c (patch) | |
tree | 7e44fe79058225ba1173c9916093ce9680f65583 /target-ppc | |
parent | 928684128eed56b3c4f4d2300c9cd34d21d02b0c (diff) |
Avoid compilation warnings on 32 bits hosts.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3203 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/helper.c | 4 |
1 files changed, 3 insertions, 1 deletions
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, |