summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2006-03-12 00:34:02 -0500
committerSteve Reinhardt <stever@eecs.umich.edu>2006-03-12 00:34:02 -0500
commit1f5266e79d86fd6b82982c3f43dc2e5ef83a18ee (patch)
tree6fafec21b0d7fb5190eca5c8a2f609d8f0e61219 /cpu
parent5ac98a7ec13e5e027cdccfcb3ae031289f629edd (diff)
downloadgem5-1f5266e79d86fd6b82982c3f43dc2e5ef83a18ee.tar.xz
Minor fix to fault message in SimpleCPU.
cpu/simple/cpu.cc: Fix up fault message... 0x prefix is redundant when using %p. --HG-- extra : convert_revision : 329d4417287a036a0f24544f73f48c0e19059425
Diffstat (limited to 'cpu')
-rw-r--r--cpu/simple/cpu.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/simple/cpu.cc b/cpu/simple/cpu.cc
index 35f9ab6c0..b5ba6ecc9 100644
--- a/cpu/simple/cpu.cc
+++ b/cpu/simple/cpu.cc
@@ -1079,7 +1079,7 @@ SimpleCPU::tick()
#if FULL_SYSTEM
fault->invoke(xcProxy);
#else // !FULL_SYSTEM
- fatal("fault (%d) detected @ PC 0x%08p", fault, cpuXC->readPC());
+ fatal("fault (%d) detected @ PC %08p", fault, cpuXC->readPC());
#endif // FULL_SYSTEM
}
else {