]> git.proxmox.com Git - qemu.git/commitdiff
target-sh4: MMU: remove dead code
authorAurelien Jarno <aurelien@aurel32.net>
Wed, 3 Feb 2010 01:33:00 +0000 (02:33 +0100)
committerAurelien Jarno <aurelien@aurel32.net>
Tue, 9 Feb 2010 20:08:05 +0000 (21:08 +0100)
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
target-sh4/helper.c

index 2d00dfadd424f5343495060ffe6019194b8ac609..9b3a259c57a13542fb0c3150ab44f926710e9035 100644 (file)
@@ -261,24 +261,6 @@ static int find_tlb_entry(CPUState * env, target_ulong address,
            continue;           /* Invalid entry */
        if (!entries[i].sh && use_asid && entries[i].asid != asid)
            continue;           /* Bad ASID */
-#if 0
-       switch (entries[i].sz) {
-       case 0:
-           size = 1024;        /* 1kB */
-           break;
-       case 1:
-           size = 4 * 1024;    /* 4kB */
-           break;
-       case 2:
-           size = 64 * 1024;   /* 64kB */
-           break;
-       case 3:
-           size = 1024 * 1024; /* 1MB */
-           break;
-       default:
-           assert(0);
-       }
-#endif
        start = (entries[i].vpn << 10) & ~(entries[i].size - 1);
        end = start + entries[i].size - 1;
        if (address >= start && address <= end) {       /* Match */