projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3fad2d
)
Make clearSingleStep in SPARC a warning, and rephrase the panic for setSingleStep
author
Gabe Black
<gblack@eecs.umich.edu>
Tue, 30 Jan 2007 07:44:24 +0000
(
02:44
-0500)
committer
Gabe Black
<gblack@eecs.umich.edu>
Tue, 30 Jan 2007 07:44:24 +0000
(
02:44
-0500)
--HG--
extra : convert_revision :
fde27a1faa6c03a24a4321a153dfa89a438f9a32
src/arch/sparc/remote_gdb.cc
patch
|
blob
|
history
diff --git
a/src/arch/sparc/remote_gdb.cc
b/src/arch/sparc/remote_gdb.cc
index c76f8b820646400dc2a44458fca33831f401d75f..21c4a468cc2f6ff9b70ca9bf90224db239a4eec3 100644
(file)
--- a/
src/arch/sparc/remote_gdb.cc
+++ b/
src/arch/sparc/remote_gdb.cc
@@
-193,11
+193,12
@@
RemoteGDB::setregs()
void
RemoteGDB::clearSingleStep()
{
- panic("SPARC does not support hardware single stepping\n");
+ warn("SPARC single stepping not implemented, "
+ "but clearSingleStep called\n");
}
void
RemoteGDB::setSingleStep()
{
- panic("SPARC
does not support hardware single stepping
\n");
+ panic("SPARC
single stepping not implemented.
\n");
}