]> git.proxmox.com Git - qemu.git/commitdiff
CRIS: Remove redundant code.
authoredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 3 Sep 2008 14:30:27 +0000 (14:30 +0000)
committeredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 3 Sep 2008 14:30:27 +0000 (14:30 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5145 c046a42c-6fe2-441c-8c8c-71466251a162

target-cris/helper.c

index a29e55c05599829f3357bfa3f81328f15138e5d4..a869ee154e3665b2b7d05e0c912a39ae529c3dd5 100644 (file)
@@ -74,7 +74,6 @@ int cpu_cris_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
 
        D(printf ("%s addr=%x pc=%x rw=%x\n", __func__, address, env->pc, rw));
        address &= TARGET_PAGE_MASK;
-       prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
        miss = cris_mmu_translate(&res, env, address, rw, mmu_idx);
        if (miss)
        {
@@ -92,7 +91,6 @@ int cpu_cris_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
        {
                phy = res.phy;
                prot = res.prot;
-               address &= TARGET_PAGE_MASK;
                r = tlb_set_page(env, address, phy, prot, mmu_idx, is_softmmu);
        }
        if (r > 0)