From 7f4db7c80779ecbc57d1146654daf0acfe18de66 Mon Sep 17 00:00:00 2001 From: rus Date: Mon, 9 Nov 2009 20:58:24 +0000 Subject: merge from trunk git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/profile-stdlib@154052 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/debug.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'gcc/debug.c') diff --git a/gcc/debug.c b/gcc/debug.c index df69fd5eb82..c60a78d4708 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -27,6 +27,7 @@ const struct gcc_debug_hooks do_nothing_debug_hooks = { debug_nothing_charstar, debug_nothing_charstar, + debug_nothing_void, debug_nothing_int_charstar, debug_nothing_int_charstar, debug_nothing_int_charstar, @@ -50,6 +51,10 @@ 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, /* direct_call */ + debug_nothing_tree_int, /* virtual_call_token */ + debug_nothing_rtx_rtx, /* copy_call_info */ + debug_nothing_uid, /* virtual_call */ debug_nothing_tree_tree, /* set_name */ 0 /* start_end_main_source_file */ }; @@ -92,6 +97,12 @@ debug_nothing_rtx (rtx insn ATTRIBUTE_UNUSED) { } +void +debug_nothing_rtx_rtx (rtx insn ATTRIBUTE_UNUSED, + rtx new_insn ATTRIBUTE_UNUSED) +{ +} + void debug_nothing_charstar (const char *main_filename ATTRIBUTE_UNUSED) { @@ -127,3 +138,8 @@ debug_nothing_tree_int (tree decl ATTRIBUTE_UNUSED, int local ATTRIBUTE_UNUSED) { } + +void +debug_nothing_uid (int uid ATTRIBUTE_UNUSED) +{ +} -- cgit v1.2.1