diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-03-04 20:07:18 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-03-04 20:07:18 +0000 |
commit | ae3b9f19a24e690800c4d612a787600ba85b7c6b (patch) | |
tree | 0592084b5504488d2c63187023afc1ba9fde8048 /gcc/dwarf2out.c | |
parent | a82db0526b74f3da7752683b134773d1c6ddbfc7 (diff) | |
download | gcc-ae3b9f19a24e690800c4d612a787600ba85b7c6b.zip gcc-ae3b9f19a24e690800c4d612a787600ba85b7c6b.tar.gz gcc-ae3b9f19a24e690800c4d612a787600ba85b7c6b.tar.bz2 |
dwarf2out.c (dwarf2out_add_library_unit_info): Remove.
* dwarf2out.c (dwarf2out_add_library_unit_info): Remove.
* dwarf2out.h: Remove the prototype for
dwarf2out_add_library_unit_info.
From-SVN: r111716
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 568a380..692dad7 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -13088,28 +13088,6 @@ gen_decl_die (tree decl, dw_die_ref context_die) } } -/* Add Ada "use" clause information for SGI Workshop debugger. */ - -void -dwarf2out_add_library_unit_info (const char *filename, const char *context_list) -{ - unsigned int file_index; - - if (filename != NULL) - { - dw_die_ref unit_die = new_die (DW_TAG_module, comp_unit_die, NULL); - tree context_list_decl - = build_decl (LABEL_DECL, get_identifier (context_list), - void_type_node); - - TREE_PUBLIC (context_list_decl) = TRUE; - add_name_attribute (unit_die, context_list); - file_index = lookup_filename (filename); - add_AT_unsigned (unit_die, DW_AT_decl_file, file_index); - add_pubname (context_list_decl, unit_die); - } -} - /* Output debug information for global decl DECL. Called from toplev.c after compilation proper has finished. */ |