diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-09-12 15:20:49 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-09-12 15:20:49 +0000 |
commit | 82b8e242f9e07e780b0f9edbdfe47acff692f695 (patch) | |
tree | 04f6fa85f98b268023d7e496b0ee37d04001a409 /gdb | |
parent | 821694e523c15dcda42be3b67ecaa2a96864e5f3 (diff) | |
download | gdb-82b8e242f9e07e780b0f9edbdfe47acff692f695.tar.gz |
2004-09-12 Andrew Cagney <cagney@gnu.org>
* target.c (target_info): Delete #ifdef call to FILES_INFO_HOOK.
Index: doc/ChangeLog
2004-09-12 Andrew Cagney <cagney@gnu.org>
* gdbint.texinfo (Native Debugging): Delete description of
FILES_INFO_HOOK.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 6 | ||||
-rw-r--r-- | gdb/target.c | 5 |
4 files changed, 8 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a4a07748983..59f96d27c1d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2004-09-12 Andrew Cagney <cagney@gnu.org> + * target.c (target_info): Delete #ifdef call to FILES_INFO_HOOK. + * inferior.h (STORE_STRUCT_RETURN): Delete macro. 2004-09-12 Salvador E. Tropea <set@users.sf.net> diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index c38340d02c4..2d3035ed3d5 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2004-09-12 Andrew Cagney <cagney@gnu.org> + + * gdbint.texinfo (Native Debugging): Delete description of + FILES_INFO_HOOK. + 2004-09-11 Paul Hilfinger <hilfinger@gnat.com> * gdbint.texinfo (User Interface): Change local_hex_string_custom diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index b24a1f1546a..296d1ecccd3 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -38,7 +38,7 @@ Free Documentation License''. @page @tex \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$ -\xdef\manvers{\$Revision: 1.223 $} % For use in headers, footers too +\xdef\manvers{\$Revision: 1.224 $} % For use in headers, footers too {\parskip=0pt \hfill Cygnus Solutions\par \hfill \manvers\par @@ -4352,10 +4352,6 @@ Define this if the native-dependent code will provide its own routines @file{infptrace.c} is included in this configuration, the default routines in @file{infptrace.c} are used for these functions. -@item FILES_INFO_HOOK -@findex FILES_INFO_HOOK -(Only defined for Convex.) - @item FP0_REGNUM @findex FP0_REGNUM This macro is normally defined to be the number of the first floating diff --git a/gdb/target.c b/gdb/target.c index 5faf5a84725..0e76e71ebc5 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -1216,11 +1216,6 @@ target_info (char *args, int from_tty) if (symfile_objfile != NULL) printf_unfiltered ("Symbols from \"%s\".\n", symfile_objfile->name); -#ifdef FILES_INFO_HOOK - if (FILES_INFO_HOOK ()) - return; -#endif - for (t = target_stack; t != NULL; t = t->beneath) { if (!t->to_has_memory) |