changeset ff8e3075d762 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=ff8e3075d762
description:
ARM: Use an actual NOP instead of a instruction that happens to do
nothing
diffstat:
src/arch/arm/isa_traits.hh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 714be811f978 -r ff8e3075d762 src/arch/arm/isa_traits.hh
--- a/src/arch/arm/isa_traits.hh Tue Jan 18 16:30:01 2011 -0600
+++ b/src/arch/arm/isa_traits.hh Tue Jan 18 16:30:01 2011 -0600
@@ -97,7 +97,7 @@
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);
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev