diff options
Diffstat (limited to 'gcc/debug.c')
-rw-r--r-- | gcc/debug.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/debug.c b/gcc/debug.c index c413595..c60a78d 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -53,6 +53,7 @@ const struct gcc_debug_hooks do_nothing_debug_hooks = 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 */ @@ -97,6 +98,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) { } |