diff options
author | Mark Alexander <marka@cygnus> | 1999-01-26 03:57:32 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1999-01-26 03:57:32 +0000 |
commit | 1eeb1b63faa2dae8e05a7e1e38618c95bdc6bfab (patch) | |
tree | 48e8bb2d80bcbb0268a1aa39b8aa2c0cb2a2286c | |
parent | b5a10831c4f26b70481e5bdc648095a0229e94f4 (diff) | |
download | gdb-1eeb1b63faa2dae8e05a7e1e38618c95bdc6bfab.zip gdb-1eeb1b63faa2dae8e05a7e1e38618c95bdc6bfab.tar.gz gdb-1eeb1b63faa2dae8e05a7e1e38618c95bdc6bfab.tar.bz2 |
* sh-tdep.c (sh_target_architecture_hook): Return immediately
when a matching machine is found.
-rw-r--r-- | gdb/ChangeLog | 11 | ||||
-rw-r--r-- | gdb/sh-tdep.c | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e9210fe..776c920 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,14 @@ +Mon Jan 25 19:55:30 1999 Mark Alexander <marka@cygnus.com> + + * sh-tdep.c (sh_target_architecture_hook): Return immediately + when a matching machine is found. + +Fri Jan 22 09:10:35 1999 Mark Alexander <marka@cygnus.com> + + * remote-mips.c (mips_initialize): Fix parameters to clear_breakpoint. + (common_breakpoint): Restore support for instruction breakpoints + on non-LSI targets. + Thu Jan 21 17:16:19 1999 Andrew Cagney <cagney@b1.cygnus.com> * stack.c: Close open comment. diff --git a/gdb/sh-tdep.c b/gdb/sh-tdep.c index 226ca2f..6f9e4cc 100644 --- a/gdb/sh-tdep.c +++ b/gdb/sh-tdep.c @@ -612,6 +612,7 @@ sh_target_architecture_hook (ap) if (sh_processor_type_table[i].mach == ap->mach) { sh_register_names = sh_processor_type_table[i].regnames; + return 1; } } |