MMU: Don't generate virtual memory area on 32bit builds.

There is no JIT, so no need for fastmem. This memory won't be used at all.
This commit is contained in:
degasus 2016-10-01 17:38:09 +02:00
parent 0de1c6c99c
commit f7e07f8f3b
1 changed files with 3 additions and 0 deletions

View File

@ -1206,7 +1206,10 @@ void DBATUpdated()
UpdateFakeMMUBat(dbat_table, 0x40000000);
UpdateFakeMMUBat(dbat_table, 0x70000000);
}
#ifndef _ARCH_32
Memory::UpdateLogicalMemory(dbat_table);
#endif
// IsOptimizable*Address and dcbz depends on the BAT mapping, so we need a flush here.
JitInterface::ClearSafe();