From: John Gilmore Date: Sat, 6 Mar 1993 01:49:03 +0000 (+0000) Subject: * am29k-tdep.c (initialize_29k): Fix call_scratch_address doc. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=19327ea5d49cffdc44db690d2687c58c3e145f7d;p=binutils-gdb.git * am29k-tdep.c (initialize_29k): Fix call_scratch_address doc. Remove reginv command. (reginv_com): Remove ancient kludge command. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 14ae6d68877..9493d7e8146 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +Fri Mar 5 17:39:45 1993 John Gilmore (gnu@cacophony.cygnus.com) + + * am29k-tdep.c (initialize_29k): Fix call_scratch_address doc. + Remove reginv command. + (reginv_com): Remove ancient kludge command. + Fri Mar 5 17:16:26 1993 K. Richard Pixley (rich@rtl.cygnus.com) * tm-irix3.h (ZERO_REGNUM): copy this macro from tm-mips.h so that diff --git a/gdb/am29k-tdep.c b/gdb/am29k-tdep.c index b81ab6d431c..7df9ef57cac 100644 --- a/gdb/am29k-tdep.c +++ b/gdb/am29k-tdep.c @@ -1,5 +1,5 @@ /* Target-machine dependent code for the AMD 29000 - Copyright 1990, 1991 Free Software Foundation, Inc. + Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc. Contributed by Cygnus Support. Written by Jim Kingdon. This file is part of GDB. @@ -797,25 +797,11 @@ push_dummy_frame () write_register (lrnum, read_register (NPC_REGNUM)); } -static void -reginv_com (args, fromtty) - char *args; - int fromtty; -{ - registers_changed(); - if (fromtty) - printf_filtered("Gdb's register cache invalidated.\n"); -} - -/* We use this mostly for debugging gdb */ void _initialize_29k() { extern CORE_ADDR text_end; - add_com ("reginv ", class_obscure, reginv_com, - "Invalidate gdb's internal register cache."); - /* FIXME, there should be a way to make a CORE_ADDR variable settable. */ add_show_from_set (add_set_cmd ("rstack_high_address", class_support, var_uinteger, @@ -829,7 +815,7 @@ or will produce the value -1.", &setlist), add_show_from_set (add_set_cmd ("call_scratch_address", class_support, var_uinteger, (char *)&text_end, -"Set address in memory where small amounts of RAM can be used when\n\ -making function calls into the inferior.", &setlist), +"Set address in memory where small amounts of RAM can be used\n\ +when making function calls into the inferior.", &setlist), &showlist); }