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 18d5bc8..8129206 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -41,6 +41,7 @@ const struct gcc_debug_hooks do_nothing_debug_hooks = debug_nothing_int, /* end_function */ debug_nothing_tree, /* function_decl */ debug_nothing_tree, /* global_decl */ + debug_nothing_tree_int, /* type_decl */ debug_nothing_tree_tree, /* imported_module_or_decl */ debug_nothing_tree, /* deferred_inline_function */ debug_nothing_tree, /* outlining_inline_function */ @@ -100,3 +101,9 @@ debug_nothing_int_int (unsigned int line ATTRIBUTE_UNUSED, unsigned int n ATTRIBUTE_UNUSED) { } + +void +debug_nothing_tree_int (tree decl ATTRIBUTE_UNUSED, + int local ATTRIBUTE_UNUSED) +{ +} |