ARM: Use an actual NOP instead of a instruction that happens to do nothing

This commit is contained in:
Ali Saidi
2011-01-18 16:30:01 -06:00
parent a3232b534b
commit 965a01d913

View File

@@ -97,7 +97,7 @@ namespace ArmISA
const Addr PAddrImplMask = (ULL(1) << PABits) - 1;
// return a no-op instruction... used for instruction fetch faults
const ExtMachInst NoopMachInst = 0x00000000;
const ExtMachInst NoopMachInst = 0xE320F000;
const int LogVMPageSize = 12; // 4K bytes
const int VMPageSize = (1 << LogVMPageSize);