diff options
author | dpatel <dpatel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-27 20:36:02 +0000 |
---|---|---|
committer | dpatel <dpatel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-27 20:36:02 +0000 |
commit | 2b49746a6ec2b11b2a7adfa1ddef162b98b72395 (patch) | |
tree | 22e0a88b1266b9aebde90de60d7105699f1310df /gcc/vmsdbgout.c | |
parent | 2aac53ce24f34bc47c49ae2ad7bb4b8726aeaf69 (diff) | |
download | gcc-2b49746a6ec2b11b2a7adfa1ddef162b98b72395.tar.gz |
2004-01-27 Devang Patel <dpatel@apple.com>
* Makefile.in (dwarf2out.o): Depend on input.h
* dbxout.c (dbx_debug_hooks): Add new empty hook for
imported_module_or_decl.
(xcoff_debug_hooks): Same.
* sdbout.c (sdb_debug_hooks): Same.
* vmsdbgout.c (vmsdbg_debug_hooks): Same.
* debug.c (do_nothing_debug_hooks): Same.
(debug_nothing_tree_tree): New function.
* debug.h (gcc_debug_hooks): New hook, imported_module_or_decl.
* dwarf2out.c: Include input.h.
(dwarf2_debug_hooks): Add new hook for imported_module_or_decl.
(remove_child_TAG): New function.
(dwarf_tag_name): Handle DW_TAG_imported_module.
(gen_subprogram_die): Equate decl number to declaration die. Do not
remove all children dies while reusing declaration die for definition.
Instead, selectively remove only formal parameters.
(gen_variable_die): Equate variable decl to declaration die.
(gen_field_die): Equate field decl to line number.
(force_namespace_die): Replace it with ...
(force_decl_die): ... this.
(force_type_die): New function.
(setup_namespace_context): Replace use of force_namespace_die() with
force_decl_die().
(gen_namespace_die): Same.
(dwarf2out_imported_module_or_decl): New function.
testsuite:
* g++.dg/debug/namespace1.C: New test.
cp:
* name-lookup.c: Include "debug.h"
(do_namespace_alias): Invoke debug_hooks to emit debug info
for namespace alias.
(do_local_using_decl): Invoke debug_hooks to emit debug info
for using decl.
(do_class_using_decl): Same.
(do_toplevel_using_decl): Same.
(do_using_directive): Same.
(cp_emit_debug_info_for_using): New function.
* Make-lang.in (cp/parser.o): Depend on debug.h
(cp/name-lookup.o): Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76746 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/vmsdbgout.c')
-rw-r--r-- | gcc/vmsdbgout.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/vmsdbgout.c b/gcc/vmsdbgout.c index 4f7f62d2e97..0a9062a7a38 100644 --- a/gcc/vmsdbgout.c +++ b/gcc/vmsdbgout.c @@ -186,10 +186,11 @@ const struct gcc_debug_hooks vmsdbg_debug_hooks vmsdbgout_end_function, vmsdbgout_decl, vmsdbgout_global_decl, - debug_nothing_tree, /* deferred_inline_function */ + debug_nothing_tree_tree, /* imported_module_or_decl */ + debug_nothing_tree, /* deferred_inline_function */ vmsdbgout_abstract_function, - debug_nothing_rtx, /* label */ - debug_nothing_int /* handle_pch */ + debug_nothing_rtx, /* label */ + debug_nothing_int /* handle_pch */ }; /* Definitions of defaults for assembler-dependent names of various |