diff options
Diffstat (limited to 'gcc/debug.c')
-rw-r--r-- | gcc/debug.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/debug.c b/gcc/debug.c index 05811a9..75d13ba 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -1,5 +1,5 @@ /* Do-nothing debug hooks for GCC. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -54,20 +54,20 @@ debug_nothing_void () void debug_nothing_tree (decl) - union tree_node *decl ATTRIBUTE_UNUSED; + tree decl ATTRIBUTE_UNUSED; { } bool debug_true_tree (block) - union tree_node *block ATTRIBUTE_UNUSED; + tree block ATTRIBUTE_UNUSED; { return true; } void debug_nothing_rtx (insn) - struct rtx_def *insn ATTRIBUTE_UNUSED; + rtx insn ATTRIBUTE_UNUSED; { } |