diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-02-01 20:51:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-02-01 20:51:06 +0000 |
commit | 7ca9f392fc1c33d83746ffab1f218b149a80d586 (patch) | |
tree | 853022d59e1b2ee11255170d41a101dfb122ef19 /gdb/main.c | |
parent | 2bd4c7b17989b78b2f30121b8339c53b3fb93184 (diff) | |
download | gdb-7ca9f392fc1c33d83746ffab1f218b149a80d586.zip gdb-7ca9f392fc1c33d83746ffab1f218b149a80d586.tar.gz gdb-7ca9f392fc1c33d83746ffab1f218b149a80d586.tar.bz2 |
2003-02-01 Andrew Cagney <ac131313@redhat.com>
* main.c (captured_main): Delete #ifdef ADDITIONAL_OPTIONS,
ADDITIONAL_OPTION_CASES, and ADDITIONAL_OPTION_HANDLER code.
(print_gdb_help): Delete #ifdef ADDITIONAL_OPTION_HELP code.
* stabsread.c (DBX_PARM_SYMBOL_CLASS): Delete macro.
(define_symbol): Update.
* symfile.c (generic_load): Remove references to nindy.
* symtab.c: Remove references to nindy.
Index: doc/ChangeLog
2003-02-01 Andrew Cagney <ac131313@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete
description of ADDITIONAL_OPTIONS, ADDITIONAL_OPTION_CASES,
ADDITIONAL_OPTION_HANDLER, and ADDITIONAL_OPTION_HELP, and
BEFORE_MAIN_LOOP_HOOK, and DBX_PARM_SYMBOL_CLASS along with
references to nindy and i960.
* gdb.texinfo (i960): Delete all references to i960 and nindy.
Diffstat (limited to 'gdb/main.c')
-rw-r--r-- | gdb/main.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -300,10 +300,6 @@ captured_main (void *data) {"statistics", no_argument, 0, 13}, {"write", no_argument, &write_files, 1}, {"args", no_argument, &set_args, 1}, -/* Allow machine descriptions to add more options... */ -#ifdef ADDITIONAL_OPTIONS - ADDITIONAL_OPTIONS -#endif {0, no_argument, 0, 0} }; @@ -444,9 +440,6 @@ extern int gdbtk_test (char *); } break; -#ifdef ADDITIONAL_OPTION_CASES - ADDITIONAL_OPTION_CASES -#endif case '?': fprintf_unfiltered (gdb_stderr, _("Use `%s --help' for a complete list of options.\n"), @@ -643,10 +636,6 @@ extern int gdbtk_test (char *); if (ttyarg != NULL) catch_command_errors (tty_command, ttyarg, !batch, RETURN_MASK_ALL); -#ifdef ADDITIONAL_OPTION_HANDLER - ADDITIONAL_OPTION_HANDLER; -#endif - /* Error messages should no longer be distinguished with extra output. */ error_pre_print = NULL; quit_pre_print = NULL; @@ -835,9 +824,6 @@ Options:\n\n\ --write Set writing into executable and core files.\n\ --xdb XDB compatibility mode.\n\ "), stream); -#ifdef ADDITIONAL_OPTION_HELP - fputs_unfiltered (ADDITIONAL_OPTION_HELP, stream); -#endif fputs_unfiltered (_("\n\ For more information, type \"help\" from within GDB, or consult the\n\ GDB manual (available as on-line info or a printed manual).\n\ |