aboutsummaryrefslogtreecommitdiff
path: root/gcc/debug.c
diff options
context:
space:
mode:
authorCatherine Moore <clm@codesourcery.com>2009-04-15 17:40:25 -0400
committerCatherine Moore <clm@gcc.gnu.org>2009-04-15 17:40:25 -0400
commita417cdd9635da7f784a48ec8cb49cca51833d970 (patch)
tree0402e3e8283f7c4c4e6a30872b20d24962d60c70 /gcc/debug.c
parent4268e5a55062bfa28f1527cda5c7c2f88317dbfb (diff)
downloadgcc-a417cdd9635da7f784a48ec8cb49cca51833d970.zip
gcc-a417cdd9635da7f784a48ec8cb49cca51833d970.tar.gz
gcc-a417cdd9635da7f784a48ec8cb49cca51833d970.tar.bz2
debug.h (set_name): Declare.
2009-04-15 Catherine Moore <clm@codesourcery.com> * debug.h (set_name): Declare. * dwarf2out.c (dwarf2out_set_name): Declare. (dwarf2_debug_hooks): Add set_name. (find_AT_string): New. (add_AT_string): Call find_AT_string. (dwarf2out_set_name): New. * cp/decl.c (grokdeclarator): Call set_name. * vmsdbgout.c (vmsdbg_debug_hooks): Add set_name_debug_nothing. * debug.c (do_nothing_debug_hooks): Likewise. * dbxout.c (dbx_debug_hooks): Likewise. * sdbout.c (sdb_debug_hooks): Likewise. From-SVN: r146137
Diffstat (limited to 'gcc/debug.c')
-rw-r--r--gcc/debug.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/debug.c b/gcc/debug.c
index e0beaa9..3946deb 100644
--- a/gcc/debug.c
+++ b/gcc/debug.c
@@ -50,6 +50,7 @@ const struct gcc_debug_hooks do_nothing_debug_hooks =
debug_nothing_int, /* handle_pch */
debug_nothing_rtx, /* var_location */
debug_nothing_void, /* switch_text_section */
+ debug_nothing_tree_tree, /* set_name */
0 /* start_end_main_source_file */
};
@@ -67,6 +68,12 @@ debug_nothing_tree (tree decl ATTRIBUTE_UNUSED)
}
void
+debug_nothing_tree_tree (tree t1 ATTRIBUTE_UNUSED,
+ tree t2 ATTRIBUTE_UNUSED)
+{
+}
+
+void
debug_nothing_tree_tree_tree_bool (tree t1 ATTRIBUTE_UNUSED,
tree t2 ATTRIBUTE_UNUSED,
tree t3 ATTRIBUTE_UNUSED,