diff options
Diffstat (limited to 'gcc/debug.c')
-rw-r--r-- | gcc/debug.c | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/gcc/debug.c b/gcc/debug.c index e18ce55448c..03b0acc5648 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -30,21 +30,22 @@ const struct gcc_debug_hooks do_nothing_debug_hooks = debug_nothing_int_charstar, debug_nothing_int_charstar, debug_nothing_int, - debug_nothing_int_int, /* begin_block */ - debug_nothing_int_int, /* end_block */ - debug_true_tree, /* ignore_block */ - debug_nothing_int_charstar, /* source_line */ - debug_nothing_int_charstar, /* begin_prologue */ - debug_nothing_int_charstar, /* end_prologue */ - debug_nothing_int_charstar, /* end_epilogue */ - debug_nothing_tree, /* begin_function */ - debug_nothing_int, /* end_function */ - debug_nothing_tree, /* function_decl */ - debug_nothing_tree, /* global_decl */ - debug_nothing_tree, /* deferred_inline_function */ - debug_nothing_tree, /* outlining_inline_function */ - debug_nothing_rtx, /* label */ - debug_nothing_int /* handle_pch */ + debug_nothing_int_int, /* begin_block */ + debug_nothing_int_int, /* end_block */ + debug_true_tree, /* ignore_block */ + debug_nothing_int_charstar, /* source_line */ + debug_nothing_int_charstar, /* begin_prologue */ + debug_nothing_int_charstar, /* end_prologue */ + debug_nothing_int_charstar, /* end_epilogue */ + debug_nothing_tree, /* begin_function */ + debug_nothing_int, /* end_function */ + debug_nothing_tree, /* function_decl */ + debug_nothing_tree, /* global_decl */ + debug_nothing_tree_tree, /* imported_module_or_decl */ + debug_nothing_tree, /* deferred_inline_function */ + debug_nothing_tree, /* outlining_inline_function */ + debug_nothing_rtx, /* label */ + debug_nothing_int /* handle_pch */ }; /* This file contains implementations of each debug hook that do @@ -60,6 +61,12 @@ debug_nothing_tree (tree decl ATTRIBUTE_UNUSED) { } +void +debug_nothing_tree_tree (tree t1 ATTRIBUTE_UNUSED, + tree t2 ATTRIBUTE_UNUSED) +{ +} + bool debug_true_tree (tree block ATTRIBUTE_UNUSED) { |