diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-04-08 21:18:13 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-04-08 21:18:13 +0000 |
commit | d00a7bea565fb33dfbe39f02b6c4015760bc8e0a (patch) | |
tree | 37dbd6089c8ef3631b43c8eeab5c72b6228c1689 /gdb/parse.c | |
parent | 6a7d3fd0b5e4f4f71b57e39fb0d1613aca2db72e (diff) | |
download | gdb-d00a7bea565fb33dfbe39f02b6c4015760bc8e0a.tar.gz |
2004-04-08 Andrew Cagney <cagney@redhat.com>
* breakpoint.h (deprecated_exception_catchpoints_are_fragile)
(deprecated_exception_support_initialized): Declare.
* hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
(initialize_hp_cxx_exception_support)
(child_enable_exception_callback): Update.
* breakpoint.c (deprecated_exception_catchpoints_are_fragile)
(deprecated_exception_support_initialized): Rename
deprecated_exception_catchpoints_are_fragile and
deprecated_exception_support_initialized.
(breakpoint_init_inferior, breakpoint_init_inferior): Update.
* symtab.c (deprecated_hp_som_som_object_present): Rename
hp_som_som_object_present.
* symtab.h (deprecated_hp_som_som_object_present): Declare.
* symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
Update. Delete extern declaration.
* valops.c (hp_som_som_object_present): Ditto.
* parse.c (deprecated_hp_som_som_object_present)
(parse_nested_classes_for_hpacc): Ditto.
* hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
* hppa-hpux-tdep.c (hp_som_som_object_present)
(initialize_hp_cxx_exception_support): Ditto.
* eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
* cp-valprint.c (hp_som_som_object_present)
(cp_print_class_method): Ditto.
* c-typeprint.c (hp_som_som_object_present):
(c_type_print_base): Ditto.
* c-exp.y (hp_som_som_object_present): Ditto.
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index 374e88ed85d..3bf06b96a88 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -95,8 +95,6 @@ int comma_terminates; static int expressiondebug = 0; -extern int hp_som_som_object_present; - static void free_funcalls (void *ignore); static void prefixify_expression (struct expression *); @@ -590,7 +588,7 @@ parse_nested_classes_for_hpacc (char *name, int len, char **token, return NULL, and caller must default to standard GDB behaviour. */ - if (!hp_som_som_object_present) + if (!deprecated_hp_som_som_object_present) return (struct symbol *) NULL; p = name; |