From: Gabe Black Date: Tue, 30 Jan 2007 07:44:24 +0000 (-0500) Subject: Make clearSingleStep in SPARC a warning, and rephrase the panic for setSingleStep X-Git-Tag: m5_2.0_beta3~231 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a4a87daad1eed91c4913e059a91d7c78d3a2b2ec;p=gem5.git Make clearSingleStep in SPARC a warning, and rephrase the panic for setSingleStep --HG-- extra : convert_revision : fde27a1faa6c03a24a4321a153dfa89a438f9a32 --- diff --git a/src/arch/sparc/remote_gdb.cc b/src/arch/sparc/remote_gdb.cc index c76f8b820..21c4a468c 100644 --- 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"); }