projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ac98a7
)
Minor fix to fault message in SimpleCPU.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Sun, 12 Mar 2006 05:34:02 +0000
(
00:34
-0500)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Sun, 12 Mar 2006 05:34:02 +0000
(
00:34
-0500)
cpu/simple/cpu.cc:
Fix up fault message... 0x prefix is redundant when using %p.
--HG--
extra : convert_revision :
329d4417287a036a0f24544f73f48c0e19059425
cpu/simple/cpu.cc
patch
|
blob
|
history
diff --git
a/cpu/simple/cpu.cc
b/cpu/simple/cpu.cc
index 35f9ab6c0597dff9ef9e22530408a04c563e679d..b5ba6ecc9fb3d735583627433985a390cf4c61ce 100644
(file)
--- 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 {