diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-01-30 02:44:24 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-01-30 02:44:24 -0500 |
commit | a4a87daad1eed91c4913e059a91d7c78d3a2b2ec (patch) | |
tree | 923ccd45b14073a7128694ac140f2d0fc1c9d51b /src/arch | |
parent | e3fad2dceaa58a3ccce6ff2f08aa4ec6eb80b6d2 (diff) | |
download | gem5-a4a87daad1eed91c4913e059a91d7c78d3a2b2ec.tar.xz |
Make clearSingleStep in SPARC a warning, and rephrase the panic for setSingleStep
--HG--
extra : convert_revision : fde27a1faa6c03a24a4321a153dfa89a438f9a32
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/sparc/remote_gdb.cc | 5 |
1 files changed, 3 insertions, 2 deletions
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"); } |