Revision 551bd27f exec-all.h

b/exec-all.h
357 357

  
358 358
    page_index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
359 359
    mmu_idx = cpu_mmu_index(env1);
360
    if (__builtin_expect(env1->tlb_table[mmu_idx][page_index].addr_code !=
361
                         (addr & TARGET_PAGE_MASK), 0)) {
360
    if (unlikely(env1->tlb_table[mmu_idx][page_index].addr_code !=
361
                 (addr & TARGET_PAGE_MASK))) {
362 362
        ldub_code(addr);
363 363
    }
364 364
    pd = env1->tlb_table[mmu_idx][page_index].addr_code & ~TARGET_PAGE_MASK;

Also available in: Unified diff