aboutsummaryrefslogtreecommitdiff
path: root/gdb/config/mips
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-10-26 14:13:24 +0000
committerAndrew Cagney <cagney@redhat.com>2004-10-26 14:13:24 +0000
commit0d0266c631018f5eecc0486d1d83fdeffe08faac (patch)
tree12cdcc79d32a8345915e1264f644d558a216d418 /gdb/config/mips
parent3e3b46e5c8d9d578ea136983b5dd1de82dbff86b (diff)
downloadgdb-0d0266c631018f5eecc0486d1d83fdeffe08faac.zip
gdb-0d0266c631018f5eecc0486d1d83fdeffe08faac.tar.gz
gdb-0d0266c631018f5eecc0486d1d83fdeffe08faac.tar.bz2
2004-10-26 Andrew Cagney <cagney@gnu.org>
* mips-tdep.h (mips_software_single_step): Move to here ... * config/mips/tm-mips.h: ... from here. * config/mips/tm-linux.h (SOFTWARE_SINGLE_STEP_P) (SOFTWARE_SINGLE_STEP): Delete. * mips-linux-tdep.c (mips_linux_init_abi): Set software_single_step.
Diffstat (limited to 'gdb/config/mips')
-rw-r--r--gdb/config/mips/tm-linux.h5
-rw-r--r--gdb/config/mips/tm-mips.h3
2 files changed, 0 insertions, 8 deletions
diff --git a/gdb/config/mips/tm-linux.h b/gdb/config/mips/tm-linux.h
index 7b10e4e..2012fec 100644
--- a/gdb/config/mips/tm-linux.h
+++ b/gdb/config/mips/tm-linux.h
@@ -39,11 +39,6 @@
#include "config/tm-linux.h"
-/* We do single stepping in software. */
-
-#define SOFTWARE_SINGLE_STEP_P() 1
-#define SOFTWARE_SINGLE_STEP(sig,bp_p) mips_software_single_step (sig, bp_p)
-
#undef IN_SOLIB_DYNSYM_RESOLVE_CODE
#define IN_SOLIB_DYNSYM_RESOLVE_CODE(PC) mips_linux_in_dynsym_resolve_code (PC)
int mips_linux_in_dynsym_resolve_code (CORE_ADDR pc);
diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h
index 040ab15..8efb229 100644
--- a/gdb/config/mips/tm-mips.h
+++ b/gdb/config/mips/tm-mips.h
@@ -107,6 +107,3 @@ extern int mips_ignore_helper (CORE_ADDR pc);
typedef unsigned long t_inst; /* Integer big enough to hold an instruction */
#endif /* TM_MIPS_H */
-
-/* Single step based on where the current instruction will take us. */
-extern void mips_software_single_step (enum target_signal, int);