diff options
Diffstat (limited to 'gcc/debug.c')
-rw-r--r-- | gcc/debug.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gcc/debug.c b/gcc/debug.c index 0b750ac..5fb9a6f 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -27,7 +27,9 @@ struct gcc_debug_hooks do_nothing_debug_hooks = debug_nothing_int_charstar, debug_nothing_int_charstar, debug_nothing_int_charstar, - debug_nothing_int + debug_nothing_int, + debug_nothing_file_int_int, + debug_nothing_file_int_int }; /* This file contains implementations of each debug hook that do @@ -52,3 +54,11 @@ debug_nothing_int (line) unsigned int line ATTRIBUTE_UNUSED; { } + +void +debug_nothing_file_int_int (file, line, n) + FILE *file ATTRIBUTE_UNUSED; + unsigned int line ATTRIBUTE_UNUSED; + unsigned int n ATTRIBUTE_UNUSED; +{ +} |