Make clearSingleStep in SPARC a warning, and rephrase the panic for setSingleStep

--HG--
extra : convert_revision : fde27a1faa6c03a24a4321a153dfa89a438f9a32
This commit is contained in:
Gabe Black 2007-01-30 02:44:24 -05:00
parent e3fad2dcea
commit a4a87daad1

View 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");
}