From 965a01d913f71570150c839ffc7376084d0fed88 Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Tue, 18 Jan 2011 16:30:01 -0600 Subject: [PATCH] ARM: Use an actual NOP instead of a instruction that happens to do nothing --- src/arch/arm/isa_traits.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2