diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2011-01-18 16:30:01 -0600 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2011-01-18 16:30:01 -0600 |
commit | 965a01d913f71570150c839ffc7376084d0fed88 (patch) | |
tree | 7c8f577e532e932996bed0cb76bbd69f56c4040f /src/arch | |
parent | a3232b534b335b6d1e27e36460eebb10e4dced47 (diff) | |
download | gem5-965a01d913f71570150c839ffc7376084d0fed88.tar.xz |
ARM: Use an actual NOP instead of a instruction that happens to do nothing
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm/isa_traits.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/isa_traits.hh b/src/arch/arm/isa_traits.hh index b2989e4b3..c3cb622f4 100644 --- a/src/arch/arm/isa_traits.hh +++ b/src/arch/arm/isa_traits.hh @@ -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); |