From 1eeb1b63faa2dae8e05a7e1e38618c95bdc6bfab Mon Sep 17 00:00:00 2001 From: Mark Alexander Date: Tue, 26 Jan 1999 03:57:32 +0000 Subject: [PATCH] * sh-tdep.c (sh_target_architecture_hook): Return immediately when a matching machine is found. --- gdb/ChangeLog | 11 +++++++++++ gdb/sh-tdep.c | 1 + 2 files changed, 12 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e9210feb56..776c920d08 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,14 @@ +Mon Jan 25 19:55:30 1999 Mark Alexander + + * sh-tdep.c (sh_target_architecture_hook): Return immediately + when a matching machine is found. + +Fri Jan 22 09:10:35 1999 Mark Alexander + + * 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 * stack.c: Close open comment. diff --git a/gdb/sh-tdep.c b/gdb/sh-tdep.c index 226ca2fe5a..6f9e4ccefb 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; } } -- 2.34.1