Make clearSingleStep in SPARC a warning, and rephrase the panic for setSingleStep
authorGabe Black <gblack@eecs.umich.edu>
Tue, 30 Jan 2007 07:44:24 +0000 (02:44 -0500)
committerGabe 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

index c76f8b820646400dc2a44458fca33831f401d75f..21c4a468cc2f6ff9b70ca9bf90224db239a4eec3 100644 (file)
@@ -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");
 }