Avoid compilation warnings on 32 bits hosts.
authorj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 21 Sep 2007 06:32:17 +0000 (06:32 +0000)
committerj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 21 Sep 2007 06:32:17 +0000 (06:32 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3203 c046a42c-6fe2-441c-8c8c-71466251a162

target-ppc/helper.c

index e5d152d..061db87 100644 (file)
@@ -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,