diff options
Diffstat (limited to 'gcc/debug.c')
-rw-r--r-- | gcc/debug.c | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/gcc/debug.c b/gcc/debug.c index 9d6e880..0b750ac 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -22,16 +22,33 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* The do-nothing debug hooks. */ struct gcc_debug_hooks do_nothing_debug_hooks = { - debug_nothing_init_finish, - debug_nothing_init_finish + debug_nothing_file_charstar, + debug_nothing_file_charstar, + debug_nothing_int_charstar, + debug_nothing_int_charstar, + debug_nothing_int_charstar, + debug_nothing_int }; /* This file contains implementations of each debug hook that do nothing. */ void -debug_nothing_init_finish (file, main_filename) +debug_nothing_file_charstar (file, main_filename) FILE *file ATTRIBUTE_UNUSED; const char *main_filename ATTRIBUTE_UNUSED; { } + +void +debug_nothing_int_charstar (line, text) + unsigned int line ATTRIBUTE_UNUSED; + const char *text ATTRIBUTE_UNUSED; +{ +} + +void +debug_nothing_int (line) + unsigned int line ATTRIBUTE_UNUSED; +{ +} |