diff options
author | Graham Stott <grahams@redhat.com> | 2002-01-08 09:54:39 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2002-01-08 09:54:39 +0000 |
commit | 16ec4ebf00e10e2fd2bc2879e9ede682883951f2 (patch) | |
tree | 4786ab3ee59e62d81b64eb63ab29c0653469be4b /gcc/debug.c | |
parent | 489406028d6b27f6484e9c6f3588190652ed943c (diff) | |
download | gcc-16ec4ebf00e10e2fd2bc2879e9ede682883951f2.tar.gz |
* debug.h: Use "tree" and "rtx" throughout.
From-SVN: r48629
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 05811a94ffd..75d13bada50 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; { } |